• File: api-builder.d.ts
  • Full Path: /home/awtadalkhimacom/public_html/services/node_modules/fdir/dist/builder/api-builder.d.ts
  • Date Modified: 10/30/2025 4:29 AM
  • File size: 353 bytes
  • MIME-type: text/x-java
  • Charset: utf-8
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;
}