codigo0/node_modules/happy-dom/lib/nodes/svg-clip-path-element/SVGClipPathElement.d.ts

18 lines
611 B
TypeScript
Raw Normal View History

import SVGElement from '../svg-element/SVGElement.js';
import * as PropertySymbol from '../../PropertySymbol.js';
import SVGAnimatedEnumeration from '../../svg/SVGAnimatedEnumeration.js';
/**
* SVG ClipPath Element.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGClipPathElement
*/
export default class SVGClipPathElement extends SVGElement {
[PropertySymbol.clipPathUnits]: SVGAnimatedEnumeration | null;
/**
* Returns clipPathUnits.
*
* @returns ClipPathUnits.
*/
get clipPathUnits(): SVGAnimatedEnumeration;
}
//# sourceMappingURL=SVGClipPathElement.d.ts.map