UNPKG

@vendure/cli

Version:

A modern, headless ecommerce framework

16 lines (15 loc) 584 B
import { CliCommand, CliCommandReturnVal } from '../../../shared/cli-command'; import { VendurePluginRef } from '../../../shared/vendure-plugin-ref'; export interface AddDashboardOptions { plugin?: VendurePluginRef; pluginName?: string; config?: string; isNonInteractive?: boolean; } export declare const addDashboardCommand: CliCommand<{ plugin: VendurePluginRef; pluginName: string; config: string; isNonInteractive: boolean; }, CliCommandReturnVal>; export declare function addDashboard(options?: AddDashboardOptions): Promise<CliCommandReturnVal>;