UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

7 lines (6 loc) 489 B
import type { PackageCacheNamespace } from './types'; export declare function normalizeRedisUrl(url: string): string; export declare function end(): Promise<void>; export declare function get<T = never>(namespace: PackageCacheNamespace, key: string): Promise<T | undefined>; export declare function set(namespace: PackageCacheNamespace, key: string, value: unknown, ttlMinutes?: number): Promise<void>; export declare function init(url: string, prefix: string | undefined): Promise<void>;