nlu
Version:
Use this package to link your projects together for local development.
9 lines (8 loc) • 569 B
TypeScript
import { EVCb, NluConf, NLURunOpts } from "./index";
export declare const globalConfigFilePath: string;
export declare const validateConfigFile: (data: NluConf) => boolean | PromiseLike<any>;
export declare const getProdKeys: (pkg: any) => string[];
export declare const getDevKeys: (pkg: any) => string[];
export declare const validateOptions: (opts: any) => boolean;
export declare const mapConfigObject: (obj: any) => any;
export declare const determineIfReinstallIsNeeded: (nodeModulesPath: string, depsKeys: string[], opts: NLURunOpts, cb: EVCb<boolean>) => void;