From a7b9459e8c7584b34da4e004a96b824e3d98ca62 Mon Sep 17 00:00:00 2001 From: Alejandro Uribe Date: Wed, 30 Oct 2024 16:07:16 -0500 Subject: [PATCH] Update Client.ts --- lib/types/Client.ts | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/lib/types/Client.ts b/lib/types/Client.ts index a964d1c..8afa719 100644 --- a/lib/types/Client.ts +++ b/lib/types/Client.ts @@ -917,23 +917,6 @@ export declare class Client { */ public replace_tags(document_id: string, tags: string[]): Promise; - /** - * Ensures a Base64 string includes a MIME type hint. If not present, uses the filename or filepath to add the appropriate MIME type. - * - * @param {string} base64String - The Base64 encoded string. - * @param {string} filename or filePath - The filename or filepath to derive the MIME type if missing. - * @returns {string} - Base64 string with MIME type prefix. - */ - public add_mime_type(base64String: String, filename: String): String; - - /** - * Checks if a Base64 string contains any of the predefined MIME types. - * - * @param {string} base64String - The Base64 encoded string with a MIME type prefix. - * @returns {boolean} - Returns true if any predefined MIME type is found, false otherwise. - */ - public check_mime_type(base64String: String): Boolean; - } /**