react-native-toast-message
Version:
Toast message component for React Native
5 lines (4 loc) • 376 B
TypeScript
import { ToastAnimationConfig, ToastSingleAnimationConfig, ToastSpringAnimationConfig } from '../types';
export declare const DEFAULT_ANIMATION_CONFIG: ToastSpringAnimationConfig;
export declare type AnimationPhase = 'enter' | 'exit';
export declare function resolveAnimationConfig(config: ToastAnimationConfig | undefined, phase: AnimationPhase): ToastSingleAnimationConfig;