UNPKG

@ssgoi/core

Version:

Core animation engine for SSGOI - Native app-like page transitions with spring physics

27 lines 591 B
import { TransitionKey } from '../types'; interface NoneOptions { spring?: { stiffness?: number; damping?: number; }; key?: TransitionKey; } export declare const none: (options?: NoneOptions) => { key?: TransitionKey | undefined; in: () => { spring: { stiffness?: number; damping?: number; }; tick: () => void; }; out: () => { spring: { stiffness?: number; damping?: number; }; tick: () => void; }; }; export {}; //# sourceMappingURL=none.d.ts.map