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.

21 lines 561 B
/** * @module Lock */ // eslint-disable-next-line @typescript-eslint/no-unused-vars import {} from "../../lock/contracts/lock.contract.js"; /** * * IMPORT_PATH: `"@daiso-tech/core/lock/contracts"` * @group Events */ export const LOCK_EVENTS = { ACQUIRED: "ACQUIRED", RELEASED: "RELEASED", FAILED_RELEASE: "FAILED_RELEASE", FAILED_REFRESH: "FAILED_REFRESH", UNAVAILABLE: "UNAVAILABLE", FORCE_RELEASED: "FORCE_RELEASED", REFRESHED: "REFRESHED", UNEXPECTED_ERROR: "UNEXPECTED_ERROR", }; //# sourceMappingURL=lock.events.js.map