Re: [heycam/webidl] A new approach to array-ish classes (#796)

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