@ahoo-wang/fetcher-openapi
Version:
OpenAPI Specification TypeScript types for Fetcher - A modern, ultra-lightweight HTTP client for browsers and Node.js. Provides complete TypeScript support with type inference for OpenAPI 3.x schemas.
15 lines • 510 B
TypeScript
import { ExternalDocumentation } from './base-types';
import { Extensible } from './extensions';
/**
* Adds metadata to a single tag that is used by the Operation Object
*
* @property name - The name of the tag
* @property description - A description for the tag
* @property externalDocs - Additional external documentation for this tag
*/
export interface Tag extends Extensible {
name: string;
description?: string;
externalDocs?: ExternalDocumentation;
}
//# sourceMappingURL=tags.d.ts.map