Files
Tiber365/node_modules/tinyglobby/node_modules/fdir/dist/builder/api-builder.d.ts
2025-05-16 00:17:42 +02:00

10 lines
353 B
TypeScript

import { Options, Output, ResultCallback } from "../types";
export declare class APIBuilder<TReturnType extends Output> {
private readonly root;
private readonly options;
constructor(root: string, options: Options);
withPromise(): Promise<TReturnType>;
withCallback(cb: ResultCallback<TReturnType>): void;
sync(): TReturnType;
}