UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

18 lines 789 B
import type { ShadowNodeWrapper } from '../../commonTypes'; import type { ExistingCSSAnimationProperties } from '../types'; import type { ICSSAnimationsManager } from '../types/interfaces'; export default class CSSAnimationsManager implements ICSSAnimationsManager { private readonly viewTag; private readonly shadowNodeWrapper; private attachedAnimations; constructor(shadowNodeWrapper: ShadowNodeWrapper, viewTag: number); update(animationProperties: ExistingCSSAnimationProperties | null): void; unmountCleanup(): void; private detach; private registerKeyframesUsage; private unregisterKeyframesUsage; private processAnimations; private buildAnimationsMap; private getAnimationUpdates; } //# sourceMappingURL=CSSAnimationsManager.d.ts.map