Page MenuHomeWickedGov Phorge

StyleSheet.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

StyleSheet.php

<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace Wikimedia\IDLeDOM;
/**
* StyleSheet
*
* @see https://dom.spec.whatwg.org/#interface-stylesheet
*
* @property string $type
* @property ?string $href
* @property Element|ProcessingInstruction|null $ownerNode
* @property CSSStyleSheet|null $parentStyleSheet
* @property ?string $title
* @property MediaList $media
* @property bool $disabled
* @phan-forbid-undeclared-magic-properties
*/
interface StyleSheet {
/**
* @return string
*/
public function getType(): string;
/**
* @return ?string
*/
public function getHref(): ?string;
/**
* @return Element|ProcessingInstruction|null
*/
public function getOwnerNode();
/**
* @return CSSStyleSheet|null
*/
public function getParentStyleSheet();
/**
* @return ?string
*/
public function getTitle(): ?string;
/**
* @return MediaList
*/
public function getMedia();
/**
* @param ?string $val
*/
public function setMedia( ?string $val ): void;
/**
* @return bool
*/
public function getDisabled(): bool;
/**
* @param bool $val
*/
public function setDisabled( bool $val ): void;
}

File Metadata

Mime Type
text/x-php
Expires
Aug 19 2026, 17:30 (5 w, 4 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
e3/43/42fad9b2ab2fbd2fa24ae21f9af8
Default Alt Text
StyleSheet.php (1 KB)

Event Timeline