Files

19 lines
386 B
TypeScript
Raw Permalink Normal View History

2025-08-15 21:37:29 +08:00
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;
}>;