persona-community-5/.pnpm-store/v3/files/db/ab31098a3d71920562f33b72cc59ac0a06ce334f14358a4511cb6d9e02feb3662131f8b4e6ccbb7af02fa96836fe47e48e2c288e09663f9c4a41d231e92f5a
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

17 lines
599 B
Plaintext

import type { CacheDurationSeconds } from '@typescript-eslint/types';
export declare const DEFAULT_TSCONFIG_CACHE_DURATION_SECONDS = 30;
export interface CacheLike<Key, Value> {
get(key: Key): Value | undefined;
set(key: Key, value: Value): this;
}
/**
* A map with key-level expiration.
*/
export declare class ExpiringCache<Key, Value> implements CacheLike<Key, Value> {
#private;
constructor(cacheDurationSeconds: CacheDurationSeconds);
set(key: Key, value: Value): this;
get(key: Key): Value | undefined;
clear(): void;
}
//# sourceMappingURL=ExpiringCache.d.ts.map