UNPKG

visitory-sdk

Version:

Feature flags and analytics SDK for Visitory

8 lines (7 loc) 312 B
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 {};