repos / starfx

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

starfx / query
Eric Bower  ·  2024-03-04

mod.ts

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