import { ObjectElement } from '@swagger-api/apidom-core'; class ComponentsExamples extends ObjectElement { static primaryClass = 'components-examples'; constructor(content, meta, attributes) { super(content, meta, attributes); this.classes.push(ComponentsExamples.primaryClass); this.classes.push('examples'); } } export default ComponentsExamples;