react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
14 lines • 638 B
TypeScript
import type { ShadowNodeWrapper } from '../../commonTypes';
import type { CSSTransitionProperties } from '../types';
import type { ICSSTransitionsManager } from '../types/interfaces';
export default class CSSTransitionsManager implements ICSSTransitionsManager {
private readonly viewTag;
private readonly shadowNodeWrapper;
private transitionConfig;
constructor(shadowNodeWrapper: ShadowNodeWrapper, viewTag: number);
update(transitionProperties: CSSTransitionProperties | null): void;
unmountCleanup(): void;
private detach;
private attachTransition;
}
//# sourceMappingURL=CSSTransitionsManager.d.ts.map