fluid-oas
Version:
Build declarative OpenApiv3.* specifications.
7 lines (6 loc) • 300 B
JavaScript
import { withDescription, withExternalValue, withSummary, withValue, } from "../common";
import { Base } from "./base";
const ExampleBase = withValue(withExternalValue(withSummary(withDescription(Base))))();
class _OpenApiExample extends ExampleBase {
}
export const Example = new _OpenApiExample();