You've already forked joplin
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:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user