fluid-oas
Version:
Build declarative OpenApiv3.* specifications.
11 lines (10 loc) • 308 B
JavaScript
import { withIdentifier, withName, withURL } from "../common";
import { Base } from "./base";
const LicenseBase = withURL(withIdentifier(withName(Base)));
class _OpenApiLicense extends LicenseBase {
}
export const License = {
addName(name) {
return new _OpenApiLicense().addName(name);
},
};