aboutsummaryrefslogtreecommitdiffstats
path: root/src/Defs.js
blob: e8c5ac277bf9f2ba13371321ad1c6c39e8677321 (plain)
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 }
}