Current section

Files

Jump to
spellweaver priv bun node_modules fdir dist api async.d.ts
Raw

priv/bun/node_modules/fdir/dist/api/async.d.ts

import { Output, Options, ResultCallback } from "../types";
export declare function promise<TOutput extends Output>(root: string, options: Options): Promise<TOutput>;
export declare function callback<TOutput extends Output>(root: string, options: Options, callback: ResultCallback<TOutput>): void;