UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

15 lines 688 B
import type { IContextField, IContextFieldDto, IContextFieldStore } from './context-field-store-type.js'; export default class FakeContextFieldStore implements IContextFieldStore { count(): Promise<number>; defaultContextFields: IContextField[]; contextFields: IContextField[]; create(data: IContextFieldDto): Promise<IContextField>; delete(key: string): Promise<void>; deleteAll(): Promise<void>; destroy(): void; exists(key: string): Promise<boolean>; get(key: string): Promise<IContextField>; getAll(): Promise<IContextField[]>; update(data: IContextFieldDto): Promise<IContextField>; } //# sourceMappingURL=fake-context-field-store.d.ts.map