( key: string, example: IApiExample | IApiReference | ((controller: any) => IApiExample | IApiReference) )
| 122 | } |
| 123 | |
| 124 | export function ApiDefineExample( |
| 125 | key: string, example: IApiExample | IApiReference | ((controller: any) => IApiExample | IApiReference) |
| 126 | ): OpenApiDecorator { |
| 127 | return AddMetadataProperty('api:components:examples', key, example); |
| 128 | } |
| 129 | |
| 130 | export function ApiDefineRequestBody( |
| 131 | key: string, requestBody: IApiRequestBody | IApiReference | ((controller: any) => IApiRequestBody | IApiReference) |
no test coverage detected