diff --git a/index.d.ts b/index.d.ts index 0f75510..9859f16 100644 --- a/index.d.ts +++ b/index.d.ts @@ -24,7 +24,9 @@ export interface UpdateAvailableResult { diffUrl: string; } -export function checkUpdate(appkey: string): Promise; +export type CheckResult = Partial; + +export function checkUpdate(appkey: string): Promise; export function downloadUpdate(options: UpdateAvailableResult): Promise;