UNPKG

unleash-server

Version:

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

6 lines 475 B
import type { Application } from 'express'; import type { IUnleashServices } from '../services/index.js'; import type { IUnleashConfig } from '../types/option.js'; declare function demoAuthentication(app: Application, basePath: string, { userService }: Pick<IUnleashServices, 'userService'>, { authentication, flagResolver, }: Pick<IUnleashConfig, 'authentication' | 'flagResolver'>): void; export default demoAuthentication; //# sourceMappingURL=demo-authentication.d.ts.map