@azure-tools/openapi
Version:
OpenAPI common code for Azure Tools.
11 lines • 417 B
TypeScript
import { PathReference } from "../common";
import { OpenAPI2Definition } from "./definition";
export interface OpenAPI2HeaderDefinition {
type: "string" | "number" | "integer" | "boolean" | "array";
schema: PathReference & OpenAPI2Definition;
items: any;
collectionFormat: "csv" | "ssv" | "tsv" | "pipes" | "multi";
description?: string;
format?: string;
}
//# sourceMappingURL=header.d.ts.map