@launchdarkly/js-server-sdk-common
Version:
LaunchDarkly Server SDK for JavaScript - common code
8 lines • 368 B
TypeScript
import { KeyedItems } from './KeyedItems';
/**
* Used internally to describe a full set of environment data, which can include both feature
* flags and user segments. The string key for each item is the `namespace` property of a
* {@link interfaces.DataKind}.
*/
export type FullDataSet<T> = Record<string, KeyedItems<T>>;
//# sourceMappingURL=FullDataSet.d.ts.map