datainout
Version:
Import and reports data
10 lines (7 loc) • 382 B
text/typescript
import { ICommandAction } from './ICommandAction.cjs';
declare class GenerateAction implements ICommandAction {
handleAction(schema: string, options: any, ...args: any[]): Promise<void>;
genImportTemplate(templatePath: string, sourcePath: string): Promise<void>;
genReportTemplate(templatePath: string, sourcePath: string): Promise<void>;
}
export { GenerateAction };