unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
7 lines • 646 B
TypeScript
import { InactiveUsersService } from './inactive-users-service.js';
import type { IUnleashConfig } from '../../types/index.js';
import type { Db } from '../../types/index.js';
import type { UserService } from '../../services/index.js';
export declare const createInactiveUsersService: (db: Db, config: IUnleashConfig, userService: UserService) => InactiveUsersService;
export declare const createFakeInactiveUsersService: ({ getLogger, userInactivityThresholdInDays, }: Pick<IUnleashConfig, "getLogger" | "userInactivityThresholdInDays">, userService: UserService) => InactiveUsersService;
//# sourceMappingURL=createInactiveUsersService.d.ts.map