File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
packages/shared/sdk-server/src Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ function isStale(record: CacheRecord): boolean {
44
55/**
66 * Options for the TTL cache.
7- *
8- * @internal
97 */
108export interface TtlCacheOptions {
119 /**
@@ -26,8 +24,6 @@ interface CacheRecord {
2624
2725/**
2826 * A basic TTL cache with configurable TTL and check interval.
29- *
30- * @internal
3127 */
3228export default class TtlCache {
3329 private _storage : Map < string , CacheRecord > = new Map ( ) ;
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export * from './store';
99export * from './events' ;
1010
1111export * from '@launchdarkly/js-sdk-common' ;
12+ export * as internalServer from './internal' ;
1213
1314export {
1415 LDClientImpl ,
Original file line number Diff line number Diff line change 1+ import TtlCache from '../cache/TtlCache' ;
2+ import type { TtlCacheOptions } from '../cache/TtlCache' ;
3+
4+ export { TtlCache } ;
5+ export type { TtlCacheOptions } ;
You can’t perform that action at this time.
0 commit comments