@vendure/cli
Version:
A modern, headless ecommerce framework
15 lines (14 loc) • 481 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>;