Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StyleSheet

A single style sheet. CSS style sheets will further implement the more specialized CSSStyleSheet interface.

interface StyleSheet {
disabled: boolean;
readonly href: string | null;
readonly media: MediaList;
readonly ownerNode: Element | ProcessingInstruction | null;
readonly parentStyleSheet: CSSStyleSheet | null;
readonly title: string | null;
readonly type: string;
}
var StyleSheet: {
prototype: StyleSheet;
new (): StyleSheet;
}
;

§Properties

§
disabled: boolean
[src]
§
readonly href: string | null
[src]
§
readonly media: MediaList
[src]
§
readonly ownerNode: Element | ProcessingInstruction | null
[src]
§
readonly parentStyleSheet: CSSStyleSheet | null
[src]
§
readonly title: string | null
[src]
§
readonly type: string
[src]