import { ICommandInstance } from '@midwayjs/command-core'; import { GeneratorSharedOptions } from '../utils'; import { GeneratorCoreWrapperArgs } from '../../utils'; export interface ControllerOptions extends GeneratorSharedOptions { /** * @description Use simplest template * @value false */ light: boolean; /** * @description Class identifier */ class: string; } export declare const mountControllerCommand: () => ICommandInstance; declare const controllerHandler: (arg: GeneratorCoreWrapperArgs) => Promise; export default controllerHandler; //# sourceMappingURL=controller.handler.d.ts.map