react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
10 lines • 607 B
TypeScript
import type { PlainStyle } from '../../../common';
import { CSSKeyframesRuleBase } from '../../models';
import type { CSSAnimationKeyframes } from '../../types';
import type { NormalizedCSSAnimationKeyframesConfig } from '../types';
export default class CSSKeyframesRuleImpl<S extends PlainStyle = PlainStyle> extends CSSKeyframesRuleBase<S> {
private readonly normalizedKeyframesCache_;
constructor(keyframes: CSSAnimationKeyframes<S>, cssText?: string);
getNormalizedKeyframesConfig(viewName: string): NormalizedCSSAnimationKeyframesConfig;
}
//# sourceMappingURL=CSSKeyframesRuleImpl.d.ts.map