1
0
mirror of https://gitcode.com/gh_mirrors/re/react-native-pushy.git synced 2025-09-17 20:06:10 +08:00
Code Issues Packages Projects Releases Wiki Activity GitHub Gitee

Unify download progress event

This commit is contained in:
sunnylqm
2020-08-09 00:08:30 +08:00
parent a4a372f17e
commit 6abb2c7a5d
2 changed files with 24 additions and 18 deletions

6
lib/index.d.ts vendored
View File

@@ -55,3 +55,9 @@ export function setCustomEndpoints({
backUps?: string[];
backupQueryUrl?: string;
}): void;
interface ProgressEvent {
received: number;
total: number;
}