unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
14 lines • 797 B
TypeScript
import type { Response } from 'express';
import type { OpenApiService } from '../../services/index.js';
import type { IAuthRequest } from '../unleash-types.js';
import type { IUnleashConfig } from '../../types/option.js';
import Controller from '../controller.js';
import type { IUnleashServices } from '../../services/index.js';
import { type TelemetrySettingsSchema } from '../../openapi/spec/telemetry-settings-schema.js';
declare class TelemetryController extends Controller {
openApiService: OpenApiService;
constructor(config: IUnleashConfig, { openApiService }: Pick<IUnleashServices, 'openApiService'>);
getTelemetrySettings(req: IAuthRequest, res: Response<TelemetrySettingsSchema>): Promise<void>;
}
export default TelemetryController;
//# sourceMappingURL=telemetry.d.ts.map