18 lines
611 B
TypeScript
18 lines
611 B
TypeScript
|
|
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
|