@launchdarkly/js-server-sdk-common
Version:
LaunchDarkly Server SDK for JavaScript - common code
12 lines • 369 B
TypeScript
/**
* Used internally to describe the type of data being queried or updated, such as feature flags or
* user segments.
*/
export interface DataKind {
/**
* A string such as `"features"` or `"segments"` which can be used in keys to distinguish this
* kind of data from other kinds.
*/
namespace: string;
}
//# sourceMappingURL=DataKind.d.ts.map