| 37 | } |
| 38 | |
| 39 | export interface SVGAttributes<Target extends EventTarget = SVGElement> |
| 40 | extends HTMLAttributes<Target> { |
| 41 | accentHeight?: number | string; |
| 42 | accumulate?: "none" | "sum"; |
| 43 | additive?: "replace" | "sum"; |
| 44 | alignmentBaseline?: |
| 45 | | "auto" |
| 46 | | "baseline" |
| 47 | | "before-edge" |
| 48 | | "text-before-edge" |
| 49 | | "middle" |
| 50 | | "central" |
| 51 | | "after-edge" |
| 52 | | "text-after-edge" |
| 53 | | "ideographic" |
| 54 | | "alphabetic" |
| 55 | | "hanging" |
| 56 | | "mathematical" |
| 57 | | "inherit"; |
| 58 | allowReorder?: "no" | "yes"; |
| 59 | alphabetic?: number | string; |
| 60 | amplitude?: number | string; |
| 61 | arabicForm?: "initial" | "medial" | "terminal" | "isolated"; |
| 62 | ascent?: number | string; |
| 63 | attributeName?: string; |
| 64 | attributeType?: string; |
| 65 | autoReverse?: number | string; |
| 66 | azimuth?: number | string; |
| 67 | baseFrequency?: number | string; |
| 68 | baselineShift?: number | string; |
| 69 | baseProfile?: number | string; |
| 70 | bbox?: number | string; |
| 71 | begin?: number | string; |
| 72 | bias?: number | string; |
| 73 | by?: number | string; |
| 74 | calcMode?: number | string; |
| 75 | capHeight?: number | string; |
| 76 | clip?: number | string; |
| 77 | clipPath?: string; |
| 78 | clipPathUnits?: number | string; |
| 79 | clipRule?: number | string; |
| 80 | colorInterpolation?: number | string; |
| 81 | colorInterpolationFilters?: "auto" | "sRGB" | "linearRGB" | "inherit"; |
| 82 | colorProfile?: number | string; |
| 83 | colorRendering?: number | string; |
| 84 | contentScriptType?: number | string; |
| 85 | contentStyleType?: number | string; |
| 86 | cursor?: number | string; |
| 87 | cx?: number | string; |
| 88 | cy?: number | string; |
| 89 | d?: string; |
| 90 | decelerate?: number | string; |
| 91 | descent?: number | string; |
| 92 | diffuseConstant?: number | string; |
| 93 | direction?: number | string; |
| 94 | display?: number | string; |
| 95 | divisor?: number | string; |
| 96 | dominantBaseline?: number | string; |
nothing calls this directly
no outgoing calls
no test coverage detected