1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
react-native-pushy/lib/index.d.ts

58 lines
1.3 KiB
TypeScript
Raw Normal View History

2019-07-06 21:52:34 +08:00
export const downloadRootDir: string;
export const packageVersion: string;
export const currentVersion: string;
export const isFirstTime: boolean;
export const isRolledBack: boolean;
export interface ExpiredResult {
expired: true;
downloadUrl: string;
}
export interface UpTodateResult {
upToDate: true;
}
export interface UpdateAvailableResult {
update: true;
name: string; // version name
hash: string;
description: string;
metaInfo: string;
pdiffUrl: string;
2020-07-28 23:15:42 +08:00
diffUrl?: string;
2020-07-28 23:34:06 +08:00
}
2019-07-06 21:52:34 +08:00
2020-07-28 23:15:42 +08:00
export type CheckResult =
| ExpiredResult
| UpTodateResult
| UpdateAvailableResult;
2019-07-06 22:26:50 +08:00
export function checkUpdate(appkey: string): Promise<CheckResult>;
2019-07-06 21:52:34 +08:00
2020-07-28 23:15:42 +08:00
export function downloadUpdate(
options: UpdateAvailableResult,
): Promise<undefined | string>;
2019-07-06 21:52:34 +08:00
export function switchVersion(hash: string): void;
export function switchVersionLater(hash: string): void;
export function markSuccess(): void;
2020-07-28 23:15:42 +08:00
2020-07-28 23:34:06 +08:00
/**
* @param {string} main - The main api endpoint
* @param {string[]} [backups] - The back up endpoints.
* @param {string} [backupQueryUrl] - An url that return a json file containing an array of endpoint.
* like: ["https://backup.api/1", "https://backup.api/2"]
*/
export function setCustomEndpoints({
main,
backups,
backupQueryUrl,
}: {
main: string;
backUps?: string[];
backupQueryUrl?: string;
}): void;