[w3c/manifest] Payment Handler spec defines IDL types very similar to manifest (#652)

ie.

Manifest: https://www.w3.org/TR/appmanifest/#imageresource-and-its-members
```
dictionary ImageResource {
    required USVString src;
             DOMString sizes;
             USVString type;
             USVString purpose;
             USVString platform;
};
```

Payment Handler: https://w3c.github.io/payment-handler/#dom-imageobject
```
dictionary ImageObject {
    required USVString src;
             DOMString sizes;
             DOMString type;
};
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/manifest/issues/652

Received on Wednesday, 7 February 2018 11:45:46 UTC