@tempots/beatui 0.61.1 → 0.61.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,7 +15,7 @@ export interface DownloadError {
15
15
  error: Error;
16
16
  }
17
17
  export type DownloadResult = Progress | Undetermined | Done | DownloadError;
18
- export declare const downloadUrl: (url: string, filename?: string) => void;
18
+ export declare const downloadUrl: (url: string, filename?: string) => Promise<void>;
19
19
  export declare const downloadContent: (content: string | Uint8Array<ArrayBuffer>, filename: string, type?: string) => void;
20
20
  export declare const downloadUrlAndMonitor: (url: string) => {
21
21
  signal: Signal<DownloadResult>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tempots/beatui",
3
- "version": "0.61.1",
3
+ "version": "0.61.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.umd.js",
6
6
  "module": "dist/index.es.js",