/** @packageDocumentation * @module OrbitGT */ declare type float64 = number; /** * Class CachedItem stores a single entry in a cache of items. */ /** @internal */ export declare class CachedItem { /** The unique key of the item */ key: string; /** The item to cache */ element: T; /** The latest access time of the item */ accessTime: float64; /** * Create a new item. */ constructor(key: string, element: T, accessTime: float64); } export {}; //# sourceMappingURL=CachedItem.d.ts.map