| 1608 | |
| 1609 | /** CSS keyframes rule representation. */ |
| 1610 | export interface CSSKeyframesRule { |
| 1611 | /** Animation name. */ |
| 1612 | animationName: CSS.Value; |
| 1613 | /** List of keyframes. */ |
| 1614 | keyframes: CSS.CSSKeyframeRule[]; |
| 1615 | } |
| 1616 | |
| 1617 | /** Representation of a custom property registration through CSS.registerProperty */ |
| 1618 | export interface CSSPropertyRegistration { |
nothing calls this directly
no outgoing calls
no test coverage detected