UNPKG

fluid-oas

Version:

Build declarative OpenApiv3.* specifications.

10 lines (9 loc) 325 B
import { type BaseInterface } from "./base"; export interface OpenApiXML extends BaseInterface { addName(name: string): this; addNamespace(val: string): this; addPrefix(val: string): this; addAttribute(attribute: boolean): this; addWrapped(wrapped: boolean): this; } export declare const XML: OpenApiXML;