Type Alias IDatabaseLockTransaction

IDatabaseLockTransaction: {
    find(key: string): Promise<null | ILockData>;
    upsert(key: string, lockId: string, expiration: null | Date): Promise<void>;
}

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