UNPKG

@hyper-fetch/react

Version:

React hooks and utils for the hyper-fetch

11 lines (9 loc) 224 B
export type UseSocketStateType<DataType = any> = { data: DataType | null; connected: boolean; connecting: boolean; timestamp: number | null; }; export type UseSocketStateProps = { dependencyTracking?: boolean; };