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.
127 lines • 7.75 kB
TypeScript
import SVGSVGElement from '../nodes/svg-svg-element/SVGSVGElement.cjs';
import SVGAnimateElement from '../nodes/svg-animate-element/SVGAnimateElement.cjs';
import SVGAnimateMotionElement from '../nodes/svg-animate-motion-element/SVGAnimateMotionElement.cjs';
import SVGAnimateTransformElement from '../nodes/svg-animate-transform-element/SVGAnimateTransformElement.cjs';
import SVGCircleElement from '../nodes/svg-circle-element/SVGCircleElement.cjs';
import SVGClipPathElement from '../nodes/svg-clip-path-element/SVGClipPathElement.cjs';
import SVGDefsElement from '../nodes/svg-defs-element/SVGDefsElement.cjs';
import SVGDescElement from '../nodes/svg-desc-element/SVGDescElement.cjs';
import SVGEllipseElement from '../nodes/svg-ellipse-element/SVGEllipseElement.cjs';
import SVGFEBlendElement from '../nodes/svg-fe-blend-element/SVGFEBlendElement.cjs';
import SVGFEColorMatrixElement from '../nodes/svg-fe-color-matrix-element/SVGFEColorMatrixElement.cjs';
import SVGFEComponentTransferElement from '../nodes/svg-fe-component-transfer-element/SVGFEComponentTransferElement.cjs';
import SVGFECompositeElement from '../nodes/svg-fe-composite-element/SVGFECompositeElement.cjs';
import SVGFEConvolveMatrixElement from '../nodes/svg-fe-convolve-matrix-element/SVGFEConvolveMatrixElement.cjs';
import SVGFEDiffuseLightingElement from '../nodes/svg-fe-diffuse-lighting-element/SVGFEDiffuseLightingElement.cjs';
import SVGFEDisplacementMapElement from '../nodes/svg-fe-displacement-map-element/SVGFEDisplacementMapElement.cjs';
import SVGFEDistantLightElement from '../nodes/svg-fe-distant-light-element/SVGFEDistantLightElement.cjs';
import SVGFEDropShadowElement from '../nodes/svg-fe-drop-shadow-element/SVGFEDropShadowElement.cjs';
import SVGFEFloodElement from '../nodes/svg-fe-flood-element/SVGFEFloodElement.cjs';
import SVGFEFuncAElement from '../nodes/svg-fe-func-a-element/SVGFEFuncAElement.cjs';
import SVGFEFuncBElement from '../nodes/svg-fe-func-b-element/SVGFEFuncBElement.cjs';
import SVGFEFuncGElement from '../nodes/svg-fe-func-g-element/SVGFEFuncGElement.cjs';
import SVGFEFuncRElement from '../nodes/svg-fe-func-r-element/SVGFEFuncRElement.cjs';
import SVGFEGaussianBlurElement from '../nodes/svg-fe-gaussian-blur-element/SVGFEGaussianBlurElement.cjs';
import SVGFEImageElement from '../nodes/svg-fe-image-element/SVGFEImageElement.cjs';
import SVGFEMergeElement from '../nodes/svg-fe-merge-element/SVGFEMergeElement.cjs';
import SVGFEMergeNodeElement from '../nodes/svg-fe-merge-node-element/SVGFEMergeNodeElement.cjs';
import SVGFEMorphologyElement from '../nodes/svg-fe-morphology-element/SVGFEMorphologyElement.cjs';
import SVGFEOffsetElement from '../nodes/svg-fe-offset-element/SVGFEOffsetElement.cjs';
import SVGFEPointLightElement from '../nodes/svg-fe-point-light-element/SVGFEPointLightElement.cjs';
import SVGFESpecularLightingElement from '../nodes/svg-fe-specular-lighting-element/SVGFESpecularLightingElement.cjs';
import SVGFESpotLightElement from '../nodes/svg-fe-spot-light-element/SVGFESpotLightElement.cjs';
import SVGFETileElement from '../nodes/svg-fe-tile-element/SVGFETileElement.cjs';
import SVGFETurbulenceElement from '../nodes/svg-fe-turbulence-element/SVGFETurbulenceElement.cjs';
import SVGFilterElement from '../nodes/svg-filter-element/SVGFilterElement.cjs';
import SVGForeignObjectElement from '../nodes/svg-foreign-object-element/SVGForeignObjectElement.cjs';
import SVGGElement from '../nodes/svg-g-element/SVGGElement.cjs';
import SVGImageElement from '../nodes/svg-image-element/SVGImageElement.cjs';
import SVGLineElement from '../nodes/svg-line-element/SVGLineElement.cjs';
import SVGLinearGradientElement from '../nodes/svg-linear-gradient-element/SVGLinearGradientElement.cjs';
import SVGMarkerElement from '../nodes/svg-marker-element/SVGMarkerElement.cjs';
import SVGMaskElement from '../nodes/svg-mask-element/SVGMaskElement.cjs';
import SVGMetadataElement from '../nodes/svg-metadata-element/SVGMetadataElement.cjs';
import SVGMPathElement from '../nodes/svg-m-path-element/SVGMPathElement.cjs';
import SVGPathElement from '../nodes/svg-path-element/SVGPathElement.cjs';
import SVGPatternElement from '../nodes/svg-pattern-element/SVGPatternElement.cjs';
import SVGPolygonElement from '../nodes/svg-polygon-element/SVGPolygonElement.cjs';
import SVGPolylineElement from '../nodes/svg-polyline-element/SVGPolylineElement.cjs';
import SVGRadialGradientElement from '../nodes/svg-radial-gradient-element/SVGRadialGradientElement.cjs';
import SVGRectElement from '../nodes/svg-rect-element/SVGRectElement.cjs';
import SVGScriptElement from '../nodes/svg-script-element/SVGScriptElement.cjs';
import SVGSetElement from '../nodes/svg-set-element/SVGSetElement.cjs';
import SVGStopElement from '../nodes/svg-stop-element/SVGStopElement.cjs';
import SVGStyleElement from '../nodes/svg-style-element/SVGStyleElement.cjs';
import SVGSwitchElement from '../nodes/svg-switch-element/SVGSwitchElement.cjs';
import SVGSymbolElement from '../nodes/svg-symbol-element/SVGSymbolElement.cjs';
import SVGTextElement from '../nodes/svg-text-element/SVGTextElement.cjs';
import SVGTextPathElement from '../nodes/svg-text-path-element/SVGTextPathElement.cjs';
import SVGTitleElement from '../nodes/svg-title-element/SVGTitleElement.cjs';
import SVGTSpanElement from '../nodes/svg-t-span-element/SVGTSpanElement.cjs';
import SVGUseElement from '../nodes/svg-use-element/SVGUseElement.cjs';
import SVGViewElement from '../nodes/svg-view-element/SVGViewElement.cjs';
export default interface ISVGElementTagNameMap {
svg: SVGSVGElement;
animate: SVGAnimateElement;
animateMotion: SVGAnimateMotionElement;
animateTransform: SVGAnimateTransformElement;
circle: SVGCircleElement;
clipPath: SVGClipPathElement;
defs: SVGDefsElement;
desc: SVGDescElement;
ellipse: SVGEllipseElement;
feBlend: SVGFEBlendElement;
feColorMatrix: SVGFEColorMatrixElement;
feComponentTransfer: SVGFEComponentTransferElement;
feComposite: SVGFECompositeElement;
feConvolveMatrix: SVGFEConvolveMatrixElement;
feDiffuseLighting: SVGFEDiffuseLightingElement;
feDisplacementMap: SVGFEDisplacementMapElement;
feDistantLight: SVGFEDistantLightElement;
feDropShadow: SVGFEDropShadowElement;
feFlood: SVGFEFloodElement;
feFuncA: SVGFEFuncAElement;
feFuncB: SVGFEFuncBElement;
feFuncG: SVGFEFuncGElement;
feFuncR: SVGFEFuncRElement;
feGaussianBlur: SVGFEGaussianBlurElement;
feImage: SVGFEImageElement;
feMerge: SVGFEMergeElement;
feMergeNode: SVGFEMergeNodeElement;
feMorphology: SVGFEMorphologyElement;
feOffset: SVGFEOffsetElement;
fePointLight: SVGFEPointLightElement;
feSpecularLighting: SVGFESpecularLightingElement;
feSpotLight: SVGFESpotLightElement;
feTile: SVGFETileElement;
feTurbulence: SVGFETurbulenceElement;
filter: SVGFilterElement;
foreignObject: SVGForeignObjectElement;
g: SVGGElement;
image: SVGImageElement;
line: SVGLineElement;
linearGradient: SVGLinearGradientElement;
marker: SVGMarkerElement;
mask: SVGMaskElement;
metadata: SVGMetadataElement;
mpath: SVGMPathElement;
path: SVGPathElement;
pattern: SVGPatternElement;
polygon: SVGPolygonElement;
polyline: SVGPolylineElement;
radialGradient: SVGRadialGradientElement;
rect: SVGRectElement;
script: SVGScriptElement;
set: SVGSetElement;
stop: SVGStopElement;
style: SVGStyleElement;
switch: SVGSwitchElement;
symbol: SVGSymbolElement;
text: SVGTextElement;
textPath: SVGTextPathElement;
title: SVGTitleElement;
tspan: SVGTSpanElement;
use: SVGUseElement;
view: SVGViewElement;
}
//# sourceMappingURL=ISVGElementTagNameMap.d.ts.map