7 lines
244 B
Text
7 lines
244 B
Text
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssmathsum
|
||
|
|
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
||
|
|
interface CSSMathSum : CSSMathValue {
|
||
|
|
constructor(CSSNumberish... args);
|
||
|
|
readonly attribute CSSNumericArray values;
|
||
|
|
};
|