2024-04-26 21:28:51 +08:00
|
|
|
import type { Eps } from "../../types";
|
2024-04-23 17:26:21 +08:00
|
|
|
export declare function createEps(query?: {
|
|
|
|
list: any[];
|
|
|
|
}): Promise<{
|
|
|
|
service: {};
|
|
|
|
list: Eps.Entity[];
|
2024-05-17 14:03:57 +08:00
|
|
|
isUpdate: boolean;
|
2024-04-23 17:26:21 +08:00
|
|
|
}>;
|