18 lines
543 B
TypeScript
18 lines
543 B
TypeScript
|
|
import SVGAnimatedString from '../../svg/SVGAnimatedString.js';
|
||
|
|
import SVGElement from '../svg-element/SVGElement.js';
|
||
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
||
|
|
/**
|
||
|
|
* 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
|