UNPKG

simple-on-disk-cache

Version:

A simple on-disk cache, supporting local and remote filesystem targets, with time based expiration policies.

9 lines (8 loc) 213 B
export declare class InvalidOnDiskCacheKeyError extends Error { constructor({ key }: { key: string; }); } export declare const assertIsValidOnDiskCacheKey: ({ key }: { key: string; }) => void;