UNPKG

fluid-oas

Version:

Build declarative OpenApiv3.* specifications.

7 lines (6 loc) 393 B
import { withDescription, withOperationId, withOperationRef, withParametersPrimitive, withRequestBodyPrimitive, withServer, } from "../common"; import { Base } from "./base"; const LinkBase = withServer(withDescription(withRequestBodyPrimitive(withParametersPrimitive(withOperationId(withOperationRef(Base)))))); class _OpenApiLink extends LinkBase { } export const Link = new _OpenApiLink();