@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) • 351 B
TypeScript
/**
* @module Lock
*/
import { type ILockFactoryBase, type LockFactoryInput } from "../../../../lock/contracts/_module.js";
import { type INamespace } from "../../../../namespace/contracts/_module.js";
/**
* @internal
*/
export declare function resolveLockFactoryInput(namespace: INamespace, lockFactoryInput: LockFactoryInput): ILockFactoryBase;