chromium/third_party/blink/renderer/modules/payments/image_object.idl

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://github.com/w3c/payment-handler/pull/174/files/6e6768c423e24719cb0e592cd98614f052e52a78

dictionary ImageObject {
    // Note that the src could be relative path to the service worker
    // scope.
    required USVString src;
    DOMString sizes;
    DOMString type;
};