Files
aza/APP/nexus-remote/node_modules/@electron/rebuild/lib/fetcher.d.ts

3 lines
195 B
TypeScript
Raw Normal View History

2026-03-25 14:14:07 +01:00
/// <reference types="node" />
export declare function fetch<T extends 'buffer' | 'text', RT = T extends 'buffer' ? Buffer : string>(url: string, responseType: T, retries?: number): Promise<RT>;