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.

10 lines (9 loc) 345 B
/** * @module Lock */ import type { IDatabaseLockAdapter } from "../../../../lock/contracts/_module-exports.js"; import type { ILockAdapter } from "../../../../lock/contracts/_module-exports.js"; /** * @internal */ export declare function isDatabaseLockAdapter(adapter: ILockAdapter | IDatabaseLockAdapter): adapter is IDatabaseLockAdapter;