create-aiot
Version:
An easy way to start aiot project
23 lines (22 loc) • 375 B
TypeScript
import ITemplate from './ITemplate';
/**
* IProjectParam
*/
export default interface IProjectParam {
/**
* 项目名
*/
name: string;
/**
* 模型对象,一般从 template.json 中获取
*/
template: ITemplate;
tools: {
eslint: boolean;
};
aspect?: string;
/**
* 包名
*/
packageName?: string;
}