index.d.ts 183 B

12345678
  1. import type { Eps } from "../../types";
  2. export declare function createEps(query?: {
  3. list: any[];
  4. }): Promise<{
  5. service: {};
  6. list: Eps.Entity[];
  7. isUpdate: boolean;
  8. }>;