UNPKG

@nlabs/lex

Version:
9 lines (8 loc) 330 B
export interface CreateOptions { readonly cliName?: string; readonly outputFile?: string; readonly outputName?: string; readonly quiet?: boolean; } export type CreateCallback = (status: number) => void; export declare const create: (type: string, cmd: CreateOptions, callback?: CreateCallback) => Promise<number>;