1// https://html.spec.whatwg.org/multipage/canvas.html#imagedata
2[Exposed=(Window,Worker), Serializable]
3interface ImageData {
4
5 readonly attribute unsigned long width;
6 readonly attribute unsigned long height;
7 readonly attribute Uint8ClampedArray data;
8
9};