horse-betting/btc-ui-app-2/node_modules/fdir/dist/builder/api-builder.d.ts
2025-06-19 16:39:08 +05:30

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;
}