happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
18 lines • 546 B
TypeScript
import SVGAnimatedString from '../../svg/SVGAnimatedString.cjs';
import SVGElement from '../svg-element/SVGElement.cjs';
import * as PropertySymbol from '../../PropertySymbol.cjs';
/**
* SVG MPath Element.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGMPathElement
*/
export default class SVGMPathElement extends SVGElement {
[PropertySymbol.href]: SVGAnimatedString | null;
/**
* Returns href.
*
* @returns Href.
*/
get href(): SVGAnimatedString;
}
//# sourceMappingURL=SVGMPathElement.d.ts.map