declare enum MimeType { /** * Representation of MIME type for a BMP image file (typically .bmp). */ BMP = "BMP", /** * Representation of MIME type for a CSS text file (typically .css). */ CSS = "CSS", /** * Representation of MIME type for a CSV text file (typically .csv). */ CSV = "CSV", /** * Representation of MIME type for a Google Drive folder. */ FOLDER = "FOLDER", /** * Representation of MIME type for a GIF image file (typically .gif). */ GIF = "GIF", /** * Representation of MIME type for a Google Apps Script project. */ GOOGLE_APPS_SCRIPT = "GOOGLE_APPS_SCRIPT", /** * Representation of MIME type for a Google Docs file. */ GOOGLE_DOCS = "GOOGLE_DOCS", /** * Representation of MIME type for a Google Drawings file. */ GOOGLE_DRAWINGS = "GOOGLE_DRAWINGS", /** * Representation of MIME type for a Google Forms file. */ GOOGLE_FORMS = "GOOGLE_FORMS", /** * Representation of MIME type for a Google Sheets file. */ GOOGLE_SHEETS = "GOOGLE_SHEETS", /** * Representation of MIME type for a Google Sites file. */ GOOGLE_SITES = "GOOGLE_SITES", /** * Representation of MIME type for a Google Slides file. */ GOOGLE_SLIDES = "GOOGLE_SLIDES", /** * Representation of MIME type for an HTML text file (typically .html). */ HTML = "HTML", /** * Representation of MIME type for a JavaScript text file (typically .js). */ JAVASCRIPT = "JAVASCRIPT", /** * Representation of MIME type for a JPEG image file (typically .jpg). */ JPEG = "JPEG", /** * Representation of MIME type for a Microsoft Excel spreadsheet file (typically .xlsx). */ MICROSOFT_EXCEL = "MICROSOFT_EXCEL", /** * Representation of MIME type for a Microsoft Excel legacy file (typically .xls). */ MICROSOFT_EXCEL_LEGACY = "MICROSOFT_EXCEL_LEGACY", /** * Representation of MIME type for a Microsoft PowerPoint presentation file (typically .pptx). */ MICROSOFT_POWERPOINT = "MICROSOFT_POWERPOINT", /** * Representation of MIME type for a Microsoft PowerPoint legacy file (typically .ppt). */ MICROSOFT_POWERPOINT_LEGACY = "MICROSOFT_POWERPOINT_LEGACY", /** * Representation of MIME type for a Microsoft Word document file (typically .docx). */ MICROSOFT_WORD = "MICROSOFT_WORD", /** * Representation of MIME type for a Microsoft Word legacy file (typically .doc). */ MICROSOFT_WORD_LEGACY = "MICROSOFT_WORD_LEGACY", /** * Representation of MIME type for an OpenDocument graphics file (typically .odg). */ OPENDOCUMENT_GRAPHICS = "OPENDOCUMENT_GRAPHICS", /** * Representation of MIME type for an OpenDocument presentation file (typically .odp). */ OPENDOCUMENT_PRESENTATION = "OPENDOCUMENT_PRESENTATION", /** * Representation of MIME type for an OpenDocument spreadsheet file (typically .ods). */ OPENDOCUMENT_SPREADSHEET = "OPENDOCUMENT_SPREADSHEET", /** * Representation of MIME type for an OpenDocument word-processing file (typically .odt). */ OPENDOCUMENT_TEXT = "OPENDOCUMENT_TEXT", /** * Representation of MIME type for a PDF file (typically .pdf). */ PDF = "PDF", /** * Representation of MIME type for a plain text file (typically .txt). */ PLAIN_TEXT = "PLAIN_TEXT", /** * Representation of MIME type for a PNG image file (typically .png). */ PNG = "PNG", /** * Representation of MIME type for a rich text file (typically .rtf). */ RTF = "RTF", /** * Representation of MIME type for a Google Drive shortcut. */ SHORTCUT = "SHORTCUT", /** * Representation of MIME type for an SVG image file (typically .svg). */ SVG = "SVG", /** * Representation of MIME type for a ZIP archive file (typically .zip). */ ZIP = "ZIP", }