UNPKG

@nlabs/lex

Version:
14 lines (13 loc) 468 B
export interface DevOptions { readonly bundleAnalyzer?: boolean; readonly cliName?: string; readonly config?: string; readonly open?: boolean; readonly quiet?: boolean; readonly remove?: boolean; readonly translations?: boolean; readonly usePublicIp?: boolean; readonly variables?: string; } export type DevCallback = (status: number) => void; export declare const dev: (cmd: DevOptions, callback?: DevCallback) => Promise<number>;