repos / starfx

supercharged async flow control library.
git clone https://github.com/neurosnap/starfx.git

starfx / query
Eric Bower · 04 Mar 24

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;