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

CSSNamespaceRule

An object representing a single CSS @namespace at-rule. It implements the CSSRule interface, with a type value of 10 (CSSRule.NAMESPACE_RULE).

interface CSSNamespaceRule extends CSSRule {
readonly namespaceURI: string;
readonly prefix: string;
}
var CSSNamespaceRule: {
prototype: CSSNamespaceRule;
}
;

§Extends

§Properties

§
readonly namespaceURI: string
[src]
§
readonly prefix: string
[src]