forked from tus/tus-js-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
140 lines (112 loc) · 4.12 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
// Type definitions for tus-js-client
export const isSupported: boolean
export const canStoreURLs: boolean
export const defaultOptions: UploadOptions &
Required<Pick<UploadOptions, 'httpStack' | 'fileReader' | 'urlStorage' | 'fingerprint'>>
// TODO: Consider using { read: () => Promise<{ done: boolean; value?: any; }>; } as type
export class Upload {
constructor(file: File | Blob | Pick<ReadableStreamDefaultReader, 'read'>, options: UploadOptions)
file: File | Blob | Pick<ReadableStreamDefaultReader, 'read'>
options: UploadOptions
url: string | null
static terminate(url: string, options?: UploadOptions): Promise<void>
start(): void
abort(shouldTerminate?: boolean): Promise<void>
findPreviousUploads(): Promise<PreviousUpload[]>
resumeFromPreviousUpload(previousUpload: PreviousUpload): void
}
interface UploadOptions {
endpoint?: string | null
uploadUrl?: string | null
metadata?: { [key: string]: string }
metadataForPartialUploads?: { [key: string]: string }
fingerprint?: (file: File, options: UploadOptions) => Promise<string>
uploadSize?: number | null
onProgress?: ((bytesSent: number, bytesTotal: number) => void) | null
onChunkComplete?: ((chunkSize: number, bytesAccepted: number, bytesTotal: number) => void) | null
onSuccess?: ((payload: OnSuccessPayload) => void) | null
onError?: ((error: Error | DetailedError) => void) | null
onShouldRetry?:
| ((error: DetailedError, retryAttempt: number, options: UploadOptions) => boolean)
| null
onUploadUrlAvailable?: (() => void) | null
overridePatchMethod?: boolean
headers?: { [key: string]: string }
addRequestId?: boolean
onBeforeRequest?: (req: HttpRequest) => void | Promise<void>
onAfterResponse?: (req: HttpRequest, res: HttpResponse) => void | Promise<void>
chunkSize?: number
retryDelays?: number[] | null
parallelUploads?: number
parallelUploadBoundaries?: { start: number; end: number }[] | null
storeFingerprintForResuming?: boolean
removeFingerprintOnSuccess?: boolean
uploadLengthDeferred?: boolean
uploadDataDuringCreation?: boolean
urlStorage?: UrlStorage
fileReader?: FileReader
httpStack?: HttpStack
}
interface OnSuccessPayload {
lastResponse: HttpResponse
}
interface UrlStorage {
findAllUploads(): Promise<PreviousUpload[]>
findUploadsByFingerprint(fingerprint: string): Promise<PreviousUpload[]>
removeUpload(urlStorageKey: string): Promise<void>
// Returns the URL storage key, which can be used for removing the upload.
addUpload(fingerprint: string, upload: PreviousUpload): Promise<string>
}
interface PreviousUpload {
size: number | null
metadata: { [key: string]: string }
creationTime: string
urlStorageKey: string
uploadUrl: string | null
parallelUploadUrls: string[] | null
}
interface FileReader {
openFile(input: any, chunkSize: number): Promise<FileSource>
}
interface FileSource {
size: number
slice(start: number, end: number): Promise<SliceResult>
close(): void
}
interface SliceResult {
// Platform-specific data type which must be usable by the HTTP stack as a body.
value: any
done: boolean
}
export class DefaultHttpStack implements HttpStack {
constructor(options: any)
createRequest(method: string, url: string): HttpRequest
getName(): string
}
export interface HttpStack {
createRequest(method: string, url: string): HttpRequest
getName(): string
}
export interface HttpRequest {
getMethod(): string
getURL(): string
setHeader(header: string, value: string): void
getHeader(header: string): string | undefined
setProgressHandler(handler: (bytesSent: number) => void): void
send(body: any): Promise<HttpResponse>
abort(): Promise<void>
// Return an environment specific object, e.g. the XMLHttpRequest object in browsers.
getUnderlyingObject(): any
}
export interface HttpResponse {
getStatus(): number
getHeader(header: string): string | undefined
getBody(): string
// Return an environment specific object, e.g. the XMLHttpRequest object in browsers.
getUnderlyingObject(): any
}
export class DetailedError extends Error {
originalRequest: HttpRequest
originalResponse: HttpResponse | null
causingError: Error | null
}