visitory
Version:
Visitory Session Tracking SDK
8 lines (7 loc) • 312 B
TypeScript
interface ParameterStore {
getValue: (key: string) => string | number | boolean | null;
subscribe: (callback: (values: Record<string, string | number | boolean>) => void) => () => void;
isLoaded: () => boolean;
}
export declare function initParameterStore(apiKey: string): ParameterStore;
export {};