UNPKG

unleash-server

Version:

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

7 lines 480 B
import { type Application, type RequestHandler } from 'express'; import type { IUnleashServices } from './services/index.js'; import { type IUnleashConfig } from './types/option.js'; import type { IUnleashStores } from './types/index.js'; import type { Knex } from 'knex'; export default function getApp(config: IUnleashConfig, stores: IUnleashStores, services: IUnleashServices, unleashSession?: RequestHandler, db?: Knex): Promise<Application>; //# sourceMappingURL=app.d.ts.map