@ywfe/cli
Version:
遥望前端开发命令行工具
14 lines (13 loc) • 480 B
TypeScript
export type IYwfeConfigType = 'yapi' | 'pack' | 'npm' | 'dps' | 'init' | null;
export interface IYwfeConfigYApi {
"yapiDomain": string;
"email": string;
"password": string;
bucket: string;
region: string;
accessKeyId: string;
accessKeySecret: string;
}
export declare const ywfeConfigFile: string;
export declare const REMOTE_CONFIG_URL = "http://yfe.ywwl.com/ywfe-cli/config.json";
export declare const getYWFEConfig: (name?: IYwfeConfigType) => any;