UNPKG

@daiso-tech/core

Version:

The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.

23 lines 617 B
/** * @module FileStorage */ import {} from "../../file-storage/contracts/file.contract.js"; import {} from "../../namespace/contracts/namespace.contract.js"; /** * IMPORT_PATH: `"@daiso-tech/core/file-storage/contracts"` * @group Events */ export const FILE_EVENTS = { FOUND: "FOUND", NOT_FOUND: "NOT_FOUND", ADDED: "ADDED", KEY_EXISTS: "KEY_EXISTS", UPDATED: "UPDATED", REMOVED: "REMOVED", CLEARED: "CLEARED", MOVED: "MOVED", COPIED: "COPIED", DESTINATION_EXISTS: "DESTINATION_EXISTS", UNEXPECTED_ERROR: "UNEXPECTED_ERROR", }; //# sourceMappingURL=file.events.js.map