Type Alias ILockFactory

ILockFactory: {
    create(key: string, settings?: LockFactoryCreateSettings): ILock;
}

The ILockFactory contract defines a way for managing locks independent of the underlying technology. It comes with more convenient methods compared to ILockAdapter.

IMPORT_PATH: "@daiso-tech/core/lock/contracts"

Type declaration