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

InjectGlobalFunction

interface InjectGlobalFunction {
(style: CSSBase | string): void;
(strings: TemplateStringsArray, ...interpolations: readonly CSSValue[]): void;
apply(thisArg: ((tokens: string) => string) | undefined | void, args: [CSSBase | string]): void;
bind(thisArg?: ((tokens: string) => string) | undefined | void): InjectGlobalFunction;
call(thisArg: ((tokens: string) => string) | undefined | void, style: CSSBase | string): void;
}

§Call Signatures

§
(style: CSSBase | string): void
[src]
§
(strings: TemplateStringsArray, ...interpolations: readonly CSSValue[]): void
[src]

§Methods

§
apply(thisArg: ((tokens: string) => string) | undefined | void, args: [CSSBase | string]): void
[src]
§
bind(thisArg?: ((tokens: string) => string) | undefined | void): InjectGlobalFunction
[src]
§
call(thisArg: ((tokens: string) => string) | undefined | void, style: CSSBase | string): void
[src]