Type Alias IDatabaseCacheTransaction<TType>

IDatabaseCacheTransaction: {
    find(key: string): Promise<null | ICacheData<TType>>;
    upsert(key: string, value: TType, expiration?: null | Date): Promise<void>;
}

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

Type Parameters

  • TType = unknown