import decamelize from './decamelize'; /** * 根据生成类型检验路径 * @param type 类型 * @param toPath 待校验路径 */ export declare function verifyPath(type: 'ts' | 'js' | 'less', toPath: string): Promise; /** * 打印日志 * @param msg 信息 * @param type 日志类型 */ export declare function logger(msg: string, type?: 'success' | 'fail' | 'normal'): void; /** * 解析 interface 中属性备注信息 * @param itext interface text */ export declare function parseInterface(itext: string): { [key: string]: string; }; export { decamelize };