#!/usr/bin/env node /** * Application for testing purposes * * Only waits for given amount of time * * Wait time can be defined as an cmd argument * (fe. wait for 5 seconds `ts-node test-wait.ts 5`) * * Defaults to 1 second wait time */ declare const arg: string; declare const waitInSeconds: number;