oksy 0.1.19 → 0.1.20

Sign up to get free protection for your applications and to get access to all the features.
@@ -12,4 +12,5 @@ export declare class WebSocketServerClient extends BaseCommunicator {
12
12
  confirm(title: string, message: string, primaryButtonText?: string): Promise<boolean>;
13
13
  toLocalDate(utcDate: null | Dayjs): null | Dayjs;
14
14
  navigate(url: string, type?: 'push' | 'replace' | 'hard' | 'blank'): void;
15
+ download(url: string, name: string): void;
15
16
  }