mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2025-12-16 16:42:50 +00:00
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
import type { Eps } from "../../types";
|
|
export declare function createEps(): Promise<{
|
|
service: {};
|
|
list: Eps.Entity[];
|
|
isUpdate: boolean;
|
|
} | {
|
|
service: {};
|
|
list: never[];
|
|
isUpdate?: undefined;
|
|
}>;
|