(url: string, method: string, fileBuffer: ArrayBuffer, headers: Record<string, string> = {})
| 82 | } |
| 83 | |
| 84 | function rawFetch(url: string, method: string, fileBuffer: ArrayBuffer, headers: Record<string, string> = {}): Promise<Response> { |
| 85 | return streamFetch(url, method, headers, [new Uint8Array(fileBuffer)]); |
| 86 | } |
| 87 | |
| 88 | export async function uploadToNest( |
| 89 | _: IpcMainInvokeEvent, |
no test coverage detected