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

KeyframesFunction

interface KeyframesFunction {
(style: CSSObject | string): StringLike;
(strings: TemplateStringsArray, ...interpolations: readonly CSSValue[]): StringLike;
apply(thisArg: ((tokens: string) => string) | undefined | void, args: [CSSObject | string]): StringLike;
apply(thisArg: ((tokens: string) => string) | undefined | void, args: [CSSObject | string] | [TemplateStringsArray, readonly CSSValue[]]): StringLike;
bind(thisArg?: ((tokens: string) => string) | undefined | void): Keyframes & {
[label: string]: KeyframesFunction;
}
;
call(thisArg: ((tokens: string) => string) | undefined | void, style: CSSObject | string): StringLike;
call(
thisArg: ((tokens: string) => string) | undefined | void,
strings: TemplateStringsArray,
...interpolations: readonly CSSValue[],
): StringLike;
}

§Call Signatures

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

§Methods

§
apply(thisArg: ((tokens: string) => string) | undefined | void, args: [CSSObject | string]): StringLike
[src]
§
apply(thisArg: ((tokens: string) => string) | undefined | void, args: [CSSObject | string] | [TemplateStringsArray, readonly CSSValue[]]): StringLike
[src]
§
bind(thisArg?: ((tokens: string) => string) | undefined | void): Keyframes & {
[label: string]: KeyframesFunction;
}
[src]
§
call(thisArg: ((tokens: string) => string) | undefined | void, style: CSSObject | string): StringLike
[src]
§
call(
thisArg: ((tokens: string) => string) | undefined | void,
strings: TemplateStringsArray,
...interpolations: readonly CSSValue[],
): StringLike
[src]