1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Clipper: Fix process stopping because one resource can't be created (#10337)

This commit is contained in:
pedr
2024-04-25 09:53:34 -03:00
committed by GitHub
parent 296b60800a
commit 4e95486c5c
4 changed files with 38 additions and 28 deletions

View File

@@ -1,3 +1,5 @@
import { DownloadController } from './downloadController';
export enum ApplicationPlatform {
Unknown = 0,
Windows = 1,
@@ -13,3 +15,12 @@ export enum ApplicationType {
Mobile = 2,
Cli = 3,
}
export type FetchBlobOptions = {
path?: string;
method?: string;
maxRedirects?: number;
timeout?: number;
headers?: Record<string, string>;
downloadController?: DownloadController;
};