UNPKG

@nlabs/lex

Version:
16 lines (15 loc) 526 B
export interface DevOptions { readonly bundleAnalyzer?: boolean; readonly cliName?: string; readonly config?: string; readonly format?: string; readonly open?: boolean; readonly port?: number; 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>;