@maxtropy/v-components 0.1.18-beta.29 → 0.1.18-beta.30
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.
- package/dist/mx-vcomponents.es.js +4346 -4326
- package/dist/types/utils/file.d.ts +10 -0
- package/package.json +1 -1
|
@@ -1 +1,11 @@
|
|
|
1
1
|
export declare function getRealUrl(value?: string): string;
|
|
2
|
+
export interface DownloadBlobFileOptions {
|
|
3
|
+
type?: string;
|
|
4
|
+
}
|
|
5
|
+
type DownloadOwnerWindow = Window & {
|
|
6
|
+
URL: typeof URL;
|
|
7
|
+
setTimeout: typeof setTimeout;
|
|
8
|
+
};
|
|
9
|
+
export declare function getDownloadOwnerWindow(): DownloadOwnerWindow;
|
|
10
|
+
export declare function downloadBlobFile(data: Blob | BlobPart | BlobPart[], filename: string, options?: DownloadBlobFileOptions): void;
|
|
11
|
+
export {};
|