Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
CustomEventInit
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
 getDetail
n/a
0 / 0
n/a
0 / 0
0
1<?php
2
3// AUTOMATICALLY GENERATED.  DO NOT EDIT.
4// Use `composer build` to regenerate.
5
6namespace Wikimedia\IDLeDOM;
7
8/**
9 * CustomEventInit
10 *
11 * @see https://dom.spec.whatwg.org/#dictdef-customeventinit
12 *
13 * @property bool $bubbles
14 * @property bool $cancelable
15 * @property bool $composed
16 * @property mixed|null $detail
17 * @phan-forbid-undeclared-magic-properties
18 */
19abstract class CustomEventInit extends EventInit {
20    // Dictionary type
21    // Direct parent: EventInit
22
23    use \Wikimedia\IDLeDOM\Helper\CustomEventInit;
24
25    /**
26     * @return mixed|null
27     */
28    abstract public function getDetail();
29
30}