- From: Tab Atkins Jr. <notifications@github.com>
- Date: Mon, 16 Sep 2019 17:05:14 -0700
- To: heycam/webidl <webidl@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 17 September 2019 00:05:36 UTC
As you know, I'm quite excited about this!
So, it looks like TypedOM would change like:
```diff
interface CSSMathSum : CSSMathValue {
- readonly attribute CSSNumericArray values;
+ readonly attribute ReadonlyArray<CSSNumericValue> values;
};
```
right? CSSNumericArray is just an interface with indexed getters/setters that typechecks its entries as CSSNumericValue.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/796#issuecomment-532003940
Received on Tuesday, 17 September 2019 00:05:36 UTC