KeyframesFunction
interface KeyframesFunction {
(style: CSSObject | string): 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;§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 & {}
[src][label: string]: KeyframesFunction;
§
call(thisArg: ((tokens: string) => string) | undefined | void, style: CSSObject | string): StringLike
[src]§
call(
[src]thisArg: ((tokens: string) => string) | undefined | void,
strings: TemplateStringsArray,
...interpolations: readonly CSSValue[],
): StringLike