fluid-oas
Version:
Build declarative OpenApiv3.* specifications.
9 lines (8 loc) • 319 B
TypeScript
import { type BaseInterface } from "./base";
export interface OpenApiExample extends BaseInterface {
addValue(val: string | unknown): this;
addExternalValue(val: string): this;
addSummary(summary: string): this;
addDescription(description: string): this;
}
export declare const Example: OpenApiExample;