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

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

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

register(Defs)