1 2 3 4 5 6 7 8 9 10 11
import Base from './Base.js' import {nodeOrNew} from './tools.js' export default class Defs extends Base { constructor (node) { super(nodeOrNew('defs', node), Defs) } flatten () { return this } ungroup () { return this } }