mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 04:24:59 +00:00
6 lines
187 B
Text
6 lines
187 B
Text
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGAnimatedNumber
|
|
[Exposed=Window]
|
|
interface SVGAnimatedNumber {
|
|
attribute float baseVal;
|
|
readonly attribute float animVal;
|
|
};
|