18 lines
561 B
TypeScript
18 lines
561 B
TypeScript
|
|
import SVGElement from '../svg-element/SVGElement.js';
|
||
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
||
|
|
import SVGAnimatedString from '../../svg/SVGAnimatedString.js';
|
||
|
|
/**
|
||
|
|
* SVGFEMergeNodeElement.
|
||
|
|
*
|
||
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeNodeElement
|
||
|
|
*/
|
||
|
|
export default class SVGFEMergeNodeElement extends SVGElement {
|
||
|
|
[PropertySymbol.in1]: SVGAnimatedString | null;
|
||
|
|
/**
|
||
|
|
* Returns in1.
|
||
|
|
*
|
||
|
|
* @returns In1.
|
||
|
|
*/
|
||
|
|
get in1(): SVGAnimatedString;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=SVGFEMergeNodeElement.d.ts.map
|