util.d.ts 351 B

12345
  1. import type * as crud from '../crud/types';
  2. export declare const newFile404Error: (collection: crud.CrudCollection, id: string) => DOMException;
  3. export declare const newFolder404Error: (collection: crud.CrudCollection) => DOMException;
  4. export declare const newExistsError: () => DOMException;
  5. export declare const newMissingError: () => DOMException;