@vendure/cli
Version:
A modern, headless ecommerce framework
16 lines (15 loc) • 576 B
TypeScript
import { CliCommand, CliCommandReturnVal } from '../../../shared/cli-command';
import { VendurePluginRef } from '../../../shared/vendure-plugin-ref';
export interface AddCodegenOptions {
plugin?: VendurePluginRef;
pluginName?: string;
config?: string;
isNonInteractive?: boolean;
}
export declare const addCodegenCommand: CliCommand<{
plugin: VendurePluginRef;
pluginName: string;
config: string;
isNonInteractive: boolean;
}, CliCommandReturnVal>;
export declare function addCodegen(options?: AddCodegenOptions): Promise<CliCommandReturnVal>;