repos / starfx

a micro-mvc framework for react apps
git clone https://github.com/neurosnap/starfx.git

starfx / src / query
Eric Bower  ·  2025-06-06

index.ts

 1import { type ThunksApi, createThunks } from "./thunk.js";
 2
 3export * from "./api.js";
 4export * from "./types.js";
 5export * from "./create-key.js";
 6
 7export { createThunks, type ThunksApi };
 8
 9/**
10 * @deprecated Use {@link createThunks} instead;
11 */
12export const createPipe = createThunks;