unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
14 lines • 799 B
TypeScript
import type { Response } from 'express';
import Controller from '../../routes/controller.js';
import { type IProjectParam, type IUnleashConfig } from '../../types/index.js';
import { type ProjectInsightsSchema } from '../../openapi/index.js';
import type { IUnleashServices } from '../../services/index.js';
import type { IAuthRequest } from '../../routes/unleash-types.js';
export default class ProjectInsightsController extends Controller {
private projectInsightsService;
private openApiService;
private flagResolver;
constructor(config: IUnleashConfig, services: IUnleashServices);
getProjectInsights(req: IAuthRequest<IProjectParam, unknown, unknown, unknown>, res: Response<ProjectInsightsSchema>): Promise<void>;
}
//# sourceMappingURL=project-insights-controller.d.ts.map