import PCastAPI from '@techniker-me/pcast-api'; import RtmpPush from '@technniker-me/rtmp-push'; import CommandLine from '../config/CommandLine'; interface CommandLineOptions { applicationId: string; secret: string; logLevel: string; } class TestRunner { private static readonly _commandLineOptions: CommandLineOptions = CommandLine.parse(process.argv); public static main(): void { // const testRunner = new TestRunner(); // testRunner.run(); console.log(TestRunner._commandLineOptions); } } TestRunner.main();