export default GetOpenApiJson; /** * Command for generate documentation json file openApi */ declare class GetOpenApiJson extends AbstractCommand { /** * You able to add command arguments for parsing there. */ static get commandArguments(): { output: { type: string; description: string; }; }; run(): Promise; } import AbstractCommand from '../modules/AbstractCommand.ts';