UNPKG

@hyper-fetch/react

Version:

React hooks and utils for the hyper-fetch

12 lines (9 loc) 294 B
import type { SocketInstance } from "@hyper-fetch/sockets"; import type { UseSocketStateType } from "./use-socket-state.types"; export const initialSocketState: UseSocketStateType<SocketInstance> = { data: null, extra: null, connected: false, connecting: false, timestamp: null, };