UNPKG

openapi2aspida

Version:

Convert OpenAPI 3.0 or Swagger 2.0 definitions into aspida

9 lines 338 B
import type { OpenAPIV3 } from 'openapi-types'; import type { PropValue } from './props2String'; export type Header = { name: string; value: string | PropValue; }; declare const _default: (headers: OpenAPIV3.ComponentsObject["headers"]) => Header[] | undefined; export default _default; //# sourceMappingURL=headers2Props.d.ts.map