flemo
Version:
A modern React router library with built-in motion animations and smooth transitions
9 lines (8 loc) • 394 B
TypeScript
interface ScreenStore {
dragStatus: "IDLE" | "PENDING";
replaceTransitionStatus: "IDLE" | "PENDING";
setDragStatus: (dragStatus: "IDLE" | "PENDING") => void;
setReplaceTransitionStatus: (replaceTransitionStatus: "IDLE" | "PENDING") => void;
}
declare const useScreenStore: import('zustand').UseBoundStore<import('zustand').StoreApi<ScreenStore>>;
export default useScreenStore;