Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3// AUTOMATICALLY GENERATED.  DO NOT EDIT.
4// Use `composer build` to regenerate.
5
6namespace Wikimedia\IDLeDOM;
7
8/**
9 * CSSImportRule
10 *
11 * @see https://dom.spec.whatwg.org/#interface-cssimportrule
12 *
13 * @property string $cssText
14 * @property CSSRule|null $parentRule
15 * @property CSSStyleSheet|null $parentStyleSheet
16 * @property int $type
17 * @property string $href
18 * @property MediaList $media
19 * @property CSSStyleSheet $styleSheet
20 * @phan-forbid-undeclared-magic-properties
21 */
22interface CSSImportRule extends CSSRule {
23    // Direct parent: CSSRule
24
25    /**
26     * @return string
27     */
28    public function getHref(): string;
29
30    /**
31     * @return MediaList
32     */
33    public function getMedia();
34
35    /**
36     * @param ?string $val
37     */
38    public function setMedia( ?string $val ): void;
39
40    /**
41     * @return CSSStyleSheet
42     */
43    public function getStyleSheet();
44
45}