rani-motion
Version:
A simple and powerful React animation library with TypeScript support - animated.div style components with accessibility-first approach
11 lines • 361 B
TypeScript
import { ReactNode } from 'react';
import { AnimationContextType, EasingType } from '../../types';
export interface RaniProviderProps {
children: ReactNode;
globalDuration?: number;
globalEasing?: EasingType;
globalDelay?: number;
reducedMotion?: boolean;
}
export type { AnimationContextType };
//# sourceMappingURL=types.d.ts.map