UNPKG

fluid-oas

Version:

Build declarative OpenApiv3.* specifications.

10 lines (9 loc) 321 B
import { type BaseInterface } from "./base"; export interface OpenApiServerVariable extends BaseInterface { addEnums(val: string[]): this; addDefault(val: string): this; addDescription(description: string): this; } export declare const ServerVariable: { addDefault(val: string): OpenApiServerVariable; };