react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
16 lines (15 loc) • 684 B
TypeScript
import React, { Component } from 'react';
import type { ReactNode } from 'react';
export declare const SkipEnteringContext: React.Context<React.MutableRefObject<boolean> | null>;
interface LayoutAnimationConfigProps {
skipEntering?: boolean;
skipExiting?: boolean;
children: ReactNode;
}
export declare class LayoutAnimationConfig extends Component<LayoutAnimationConfigProps> {
getMaybeWrappedChildren(): string | number | boolean | React.ReactElement<any, string | React.JSXElementConstructor<any>> | React.ReactFragment | JSX.Element[] | null | undefined;
setShouldAnimateExiting(): void;
componentWillUnmount(): void;
render(): ReactNode;
}
export {};