- From: Kagami Sascha Rosylight <notifications@github.com>
- Date: Sat, 21 Jul 2018 00:56:39 -0700
- To: heycam/webidl <webidl@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Saturday, 21 July 2018 07:57:01 UTC
Adding [WebCrypto case](https://w3c.github.io/webcrypto/#cryptokey-interface) which also uses `object` for a union of dictionaries:
```webidl
[SecureContext,Exposed=(Window,Worker)]
interface CryptoKey {
readonly attribute KeyType type;
readonly attribute boolean extractable;
readonly attribute object algorithm; // union of subdictionaries of KeyAlgorithm
readonly attribute object usages; // just returns a sequence.
};
```
--
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/568#issuecomment-406778977
Received on Saturday, 21 July 2018 07:57:01 UTC