import { EntryOptions } from './Cache.js';

type CacheOptions<R> = EntryOptions<R> & {
    initial?: R;
};

export type { CacheOptions };
