Add cookie and type enums.

This commit is contained in:
mbaharip
2023-05-25 20:31:29 +07:00
parent 2a20b392ac
commit 11f866400f
+21
View File
@@ -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",
}