export interface CommandLine { getCommands(): Map; getCommand(command: Command): string | undefined; } export enum Command { PATH = 'path', PORT = 'port', CORS = 'cors' }