@vendure/cli
Version:
A modern, headless ecommerce framework
22 lines (21 loc) • 596 B
TypeScript
export interface AddOptions {
plugin?: string;
entity?: string;
service?: string;
jobQueue?: string | boolean;
codegen?: string | boolean;
apiExtension?: string | boolean;
uiExtensions?: string | boolean;
dashboard?: string | boolean;
config?: string;
name?: string;
queryName?: string;
mutationName?: string;
selectedService?: string;
selectedPlugin?: string;
customFields?: boolean;
translatable?: boolean;
type?: string;
selectedEntity?: string;
}
export declare function addCommand(options?: AddOptions): Promise<void>;