@nlabs/lex
Version:
9 lines (8 loc) • 330 B
TypeScript
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>;