From 11f866400fb652a475046c27daa75c2ee8db7af9 Mon Sep 17 00:00:00 2001 From: mbaharip <62494292+mbahArip@users.noreply.github.com> Date: Thu, 25 May 2023 20:31:29 +0700 Subject: [PATCH] Add cookie and type enums. --- src/types/general/constant.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/types/general/constant.ts b/src/types/general/constant.ts index 5331bd9..7b34aa3 100644 --- a/src/types/general/constant.ts +++ b/src/types/general/constant.ts @@ -5,4 +5,25 @@ export enum Constant { apiNoResponse = "No response from server", apiBadRequest = "Bad request", apiInternalError = "Internal server error", + + cookiePassword = "next-gdrive-password", + cookieMaster = "x-gdrive-key", + + type_folder = "Folder", + type_3d = "3D Model", + type_audio = "Audio", + type_archive = "Archive", + type_rich_text = "Document", + type_officeWord = "Document", + type_officeExcel = "Document", + type_officePowerPoint = "Document", + type_pdf = "Document", + type_database = "Database", + type_image = "Image", + type_code = "Code", + type_text = "Text", + type_video = "Video", + type_font = "Font", + type_default = "Unknown", + type_binary = "Binary", }