summaryrefslogtreecommitdiffstats
path: root/src/Defs.js
blob: ddcf7336fa27ffca5adca2a2c16450d09ae07de6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Container from './Container.js'
import { nodeOrNew } from './tools.js'
import { register } from './adopter.js'

export default class Defs extends Container {
  constructor (node) {
    super(nodeOrNew('defs', node), Defs)
  }

  flatten () { return this }
  ungroup () { return this }
}

register(Defs)