st-open-api
Version:
Generates API client SDKs from an OpenAPI specification written in OpenAPI version 3.x.x
12 lines (11 loc) • 335 B
TypeScript
export interface IExternalDocumentation {
/**
* A short description of the target documentation. CommonMark syntax MAY be used
* for rich text representation.
*/
description?: string;
/**
* REQUIRED. The URL for the target documentation. Value MUST be in the format of a URL.
*/
url: string;
}