-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.ts
More file actions
21 lines (19 loc) · 782 Bytes
/
data.ts
File metadata and controls
21 lines (19 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// ---------------------------------------------------------------------------
// Sibu — Data
// Data fetching, async primitives, and real-time connections.
// import { query, mutation, socket } from "sibu/data";
// ---------------------------------------------------------------------------
// Data fetching
export * from "./src/data/query";
export * from "./src/data/mutation";
export * from "./src/data/infiniteQuery";
export * from "./src/data/previous";
export * from "./src/data/debounce";
export * from "./src/data/throttle";
export * from "./src/data/retry";
export * from "./src/data/resource";
export * from "./src/data/offlineStore";
export * from "./src/data/routeLoader";
// Real-time connections
export * from "./src/ui/socket";
export * from "./src/ui/stream";