UNPKG

unleash-server

Version:

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

7 lines 336 B
import type { LastSeenInput } from './last-seen-service'; import type { ILastSeenStore } from './types/last-seen-store-type'; export declare class FakeLastSeenStore implements ILastSeenStore { setLastSeen(data: LastSeenInput[]): Promise<void>; cleanLastSeen(): Promise<void>; } //# sourceMappingURL=fake-last-seen-store.d.ts.map