Interface MimeType

    Provides contains information about a MIME type associated with a particular plugin. NavigatorPlugins.mimeTypes returns an array of this object.

    MDN Reference

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

    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.