unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
9 lines • 429 B
TypeScript
import type { IUnleashConfig, IUnleashStores } from '../types/index.js';
import Controller from './controller.js';
import type { Db } from '../db/db.js';
import type { IUnleashServices } from '../services/index.js';
declare class IndexRouter extends Controller {
constructor(config: IUnleashConfig, services: IUnleashServices, stores: IUnleashStores, db: Db);
}
export default IndexRouter;
//# sourceMappingURL=index.d.ts.map