util.d.ts 180 B

12
  1. import type { FsCallbackApi } from './types';
  2. export declare function promisify(fs: FsCallbackApi, fn: string, getResult?: (result: any) => any): (...args: any[]) => Promise<any>;