chromium/third_party/blink/renderer/core/dom/abort_controller.idl

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

// https://dom.spec.whatwg.org/#interface-abortcontroller

[
    Exposed=(Window,Worker)
] interface AbortController {
    [CallWith=ScriptState, Measure] constructor();
    [SameObject] readonly attribute AbortSignal signal;

    [CallWith=ScriptState] void abort(optional any reason);
};