UNPKG

svgdom

Version:

Straightforward DOM implementation for SVG, HTML and XML

15 lines (11 loc) 277 B
// @ts-check import { SVGLength } from './SVGLength.js' export class SVGAnimatedLength { baseVal constructor(element, attributeName) { this.baseVal = new SVGLength(element, attributeName) } get animVal() { throw new Error('animVal is not implemented') } }