1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| import type { Eps } from "../../types";
| /**
| * 主入口:创建 eps 相关文件和 service
| */
| export declare function createEps(): Promise<{
| service: {};
| serviceCode: {
| content: string;
| types: string[];
| };
| list: Eps.Entity[];
| isUpdate: boolean;
| } | {
| service: {};
| list: never[];
| serviceCode?: undefined;
| isUpdate?: undefined;
| }>;
|
|