We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b609224 commit 90c5f27Copy full SHA for 90c5f27
src/upload/resume.ts
@@ -8,7 +8,7 @@ export interface UploadedChunkStorage extends UploadChunkData {
8
size: number
9
10
// 标记该 chunk 是否来自缓存
11
- isLocalCache?: true
+ isLocalCached?: true
12
}
13
14
export interface ChunkLoaded {
@@ -213,7 +213,7 @@ export default class Resume extends Base {
213
this.uploadedList = localInfo.data
214
if (Array.isArray(this.uploadedList)) {
215
this.uploadedList.forEach(chunk => {
216
- chunk.isLocalCache = true
+ chunk.isLocalCached = true
217
})
218
219
types/window.d.ts
@@ -1,5 +1,5 @@
1
interface Window {
2
webkitURL?: typeof URL
3
- mozURL?: typeof URL
+ mozURL?: typeof URL
4
ActiveXObject?: any
5
0 commit comments