UNPKG

@hyper-fetch/react

Version:

React hooks and utils for the hyper-fetch

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