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

Plugin

deprecated

Provides information about a browser plugin.

interface Plugin {
[index: number]: MimeType;
readonly description: string;
readonly filename: string;
readonly length: number;
readonly name: string;
[[Symbol.iterator]](): IterableIterator<MimeType>;
item(index: number): MimeType | null;
namedItem(name: string): MimeType | null;
}
var Plugin: {
prototype: Plugin;
new (): Plugin;
}
;

§Index Signatures

§
[index: number]: MimeType

§Properties

§
readonly description: string
[src]

Returns the plugin's description.

§
readonly filename: string
[src]

Returns the plugin library's filename, if applicable on the current platform.

§
readonly length: number
[src]

Returns the number of MIME types, represented by MimeType objects, supported by the plugin.

§
readonly name: string
[src]

Returns the plugin's name.

§Methods

§
[[Symbol.iterator]](): IterableIterator<MimeType>
[src]
§
item(index: number): MimeType | null
[src]

Returns the specified MimeType object.

§
namedItem(name: string): MimeType | null
[src]