interface dom.CSSKeyframesRule
implements CSSRule
import { type dom } from "https://deno.land/x/evt@v2.4.19/lib/types/index.ts";
const { CSSKeyframesRule } = dom;
An object representing a complete set of keyframes for a CSS animation. It corresponds to the contains of a whole @keyframes at-rule. It implements the CSSRule interface with a type value of 7 (CSSRule.KEYFRAMES_RULE).
Properties
readonly
cssRules: CSSRuleListMethods
findRule(select: string): CSSKeyframeRule | null