util.d.ts 242 B

123456789
  1. interface DocumentModel {
  2. _id: string;
  3. }
  4. export declare class Util {
  5. static formatResDocumentData: (documents: DocumentModel[]) => {}[];
  6. static whichType: (obj: any) => String;
  7. static generateDocId: () => string;
  8. }
  9. export {};