unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
7 lines (6 loc) • 396 B
TypeScript
import { Application } from 'express';
import { IUnleashServices } from '../types/services';
import { IUnleashConfig } from '../types/option';
declare function demoAuthentication(app: Application, basePath: string, // eslint-disable-line
{ userService }: Pick<IUnleashServices, 'userService'>, { authentication }: Pick<IUnleashConfig, 'authentication'>): void;
export default demoAuthentication;