@stemy/ngx-utils 19.8.5 → 19.8.6
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.
|
@@ -10,6 +10,7 @@ export declare class FileUtils {
|
|
|
10
10
|
static saveBlob(blob: Blob, fileName: string): void;
|
|
11
11
|
static saveJson(json: any, fileName: string): void;
|
|
12
12
|
static readFileAsText(file: Blob): Promise<string>;
|
|
13
|
+
static readFileAsBinaryString(file: Blob): Promise<string>;
|
|
13
14
|
static readFileAsDataURL(file: Blob): Promise<string>;
|
|
14
15
|
static base64ToBlob(base64: string, mimeType?: string): Blob;
|
|
15
16
|
static readBlobFromUrl(http: HttpClient, url: string): Promise<Blob>;
|