Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
ShadowRootInit | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
getMode | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | |||||
getDelegatesFocus | 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 | |
6 | namespace Wikimedia\IDLeDOM; |
7 | |
8 | /** |
9 | * ShadowRootInit |
10 | * |
11 | * @see https://dom.spec.whatwg.org/#dictdef-shadowrootinit |
12 | * |
13 | * @property string $mode |
14 | * @property bool $delegatesFocus |
15 | * @phan-forbid-undeclared-magic-properties |
16 | */ |
17 | abstract class ShadowRootInit implements \ArrayAccess { |
18 | // Dictionary type |
19 | |
20 | use \Wikimedia\IDLeDOM\Helper\ShadowRootInit; |
21 | |
22 | /** |
23 | * @return string |
24 | */ |
25 | abstract public function getMode(): /* ShadowRootMode */ string; |
26 | |
27 | /** |
28 | * @return bool |
29 | */ |
30 | abstract public function getDelegatesFocus(): bool; |
31 | |
32 | } |