UNPKG

fluid-oas

Version:

Build declarative OpenApiv3.* specifications.

9 lines (8 loc) 301 B
import { type BaseInterface } from "./base"; import type { OpenApiPathItem } from "./OpenApiPathItem"; export interface OpenApiCallback extends BaseInterface { addCallback(mappings: Partial<{ [K in string]: OpenApiPathItem; }>): this; } export declare const Callback: OpenApiCallback;