UNPKG

js-awe

Version:

Awesome js utils including - plan: An Asynchronous control flow with a functional taste - Chrono: record and visualize timelines in the console

12 lines 443 B
import * as F from "fluture"; export function fletch({ url, options }?: { url: any; options: any; }): F.FutureInstance<any, { status: number; body: unknown; }>; export function promiseFunToFutureFun(futurizePromFun: any): (...input: any[]) => F.FutureInstance<any, any>; export function ffletchMaker(fetchsDef: any, delay: any): (input: any) => F.FutureInstance<any, any>; export { F }; //# sourceMappingURL=flutureExt.d.ts.map