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