UNPKG

flemo

Version:

A modern React router library with built-in motion animations and smooth transitions

8 lines (7 loc) 335 B
export type NavigateStatus = "IDLE" | "PUSHING" | "REPLACING" | "POPPING" | "COMPLETED"; interface NavigateStore { status: NavigateStatus; setStatus: (status: NavigateStatus) => void; } declare const useNavigateStore: import('zustand').UseBoundStore<import('zustand').StoreApi<NavigateStore>>; export default useNavigateStore;