You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
386 B
18 lines
386 B
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;
|
|
}>;
|
|
|