blob: fc5c110adfadc8a439893bbc591a70a36bf0d6d5 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://github.com/domenic/unhandled-rejections-browser-spec
dictionary PromiseRejectionEventInit : EventInit {
required Promise<any> promise;
any reason;
};