2024-05-17 14:03:57 +08:00

9 lines
183 B
TypeScript

import type { Eps } from "../../types";
export declare function createEps(query?: {
list: any[];
}): Promise<{
service: {};
list: Eps.Entity[];
isUpdate: boolean;
}>;