UNPKG

@swagger-api/apidom-ns-openapi-3-1

Version:

OpenAPI 3.1.x namespace for ApiDOM.

13 lines (12 loc) 356 B
import { ObjectElement } from '@swagger-api/apidom-core'; /** * @public */ class ComponentsPathItems extends ObjectElement { static primaryClass = 'components-path-items'; constructor(content, meta, attributes) { super(content, meta, attributes); this.classes.push(ComponentsPathItems.primaryClass); } } export default ComponentsPathItems;