@unleash/proxy
Version:
The Unleash Proxy (Open-Source)
13 lines (11 loc) • 356 B
text/typescript
import type { OpenAPIV3 } from 'openapi-types';
export const featuresResponse: OpenAPIV3.ResponseObject = {
description: 'The list of enabled toggles for the provided context.',
content: {
'application/json': {
schema: {
$ref: '#/components/schemas/featuresSchema',
},
},
},
} as const;