Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MimeType

deprecated

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

interface MimeType {
readonly description: string;
readonly enabledPlugin: Plugin;
readonly suffixes: string;
readonly type: string;
}
var MimeType: {
prototype: MimeType;
new (): MimeType;
}
;

§Properties

§
readonly description: string
[src]

Returns the MIME type's description.

§
readonly enabledPlugin: Plugin
[src]

Returns the Plugin object that implements this MIME type.

§
readonly suffixes: string
[src]

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

§
readonly type: string
[src]

Returns the MIME type.