Google Apps Script API
    Preparing search index...

    Interface MimeType

    The MimeType interface provides contains information about a MIME type associated with a particular plugin.

    MDN Reference

    interface MimeType {
        description: string;
        enabledPlugin: Plugin;
        suffixes: string;
        type: string;
    }
    Index

    Properties

    description: string

    Returns the MIME type's description.

    enabledPlugin: Plugin

    Returns the Plugin object that implements this MIME type.

    suffixes: string

    Returns the MIME type's typical file extensions, in a comma-separated list.

    type: string

    Returns the MIME type.