@ssgoi/core
Version:
Core animation engine for SSGOI - Native app-like page transitions with spring physics
13 lines • 755 B
TypeScript
/**
* Integrator Module
*
* Provides numerical integration implementations for animation physics.
* Uses strategy pattern - all integrators implement the same interface.
*/
export type { Integrator, IntegratorState } from './types';
export { POSITION_THRESHOLD, VELOCITY_THRESHOLD, SETTLE_THRESHOLD, } from './types';
export { SpringIntegrator, type SpringIntegratorConfig, } from './spring-integrator';
export { DoubleSpringIntegrator, type DoubleSpringIntegratorConfig, type FollowerSpringConfig, } from './double-spring-integrator';
export { InertiaIntegrator, type InertiaIntegratorConfig, type ResistanceType, } from './inertia-integrator';
export { IntegratorProvider, type PhysicsConfig } from './provider';
//# sourceMappingURL=index.d.ts.map