mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
13 lines
186 B
C
13 lines
186 B
C
/*!
|
|
|
|
http://www.w3.org/TR/SVG/types.html#InterfaceSVGNumber
|
|
|
|
interface SVGNumber {
|
|
attribute float value setraises(DOMException);
|
|
};
|
|
*/
|
|
typedef struct
|
|
{
|
|
float value;
|
|
} SVGNumber;
|