Stay organized with collections
Save and categorize content based on your preferences.
Set the list of MIME types which will be selectable. Use commas to separate
MIME types if more than one is required. If you don't set MIME types, files of
all MIME types are displayed in the view.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-06-20 UTC."],[],[],null,["Set the list of MIME types which will be selectable. Use commas to separate\nMIME types if more than one is required. If you don't set MIME types, files of\nall MIME types are displayed in the view.\n\nExamples\n\nBasic usage with multiple MIME types \n\n const mimeTypes = ['image/png', 'image/jpeg'];\n const builder = new google.pickerPickerBuilder()\n .setSelectableMimeTypes(mimeTypes.join(','));\n\nGoogle Workspace MIME types \n\n const mimeTypes = [\n 'application/vnd.google-apps.document',\n 'application/vnd.google-apps.presentation',\n 'application/vnd.google-apps.spreadsheet',\n ];\n\n const builder = new google.pickerPickerBuilder()\n .setSelectableMimeTypes(mimeTypes.join(','));\n\nSignature \n\n setSelectableMimeTypes(type: string): PickerBuilder;\n\nDetails\n\n| Optional | No |\n| Final | No |\n| Protected | No |\n| Static | No |\n|-----------|----|\n\nParameters\n\n| Name | Type | Optional | Description |\n|--------|----------|----------|-------------|\n| `type` | `string` | No | |\n\nReturns\n\n[PickerBuilder](./picker.pickerbuilder)"]]