Interface Plugin
interface Plugin {
description: string;
filename: string;
length: number;
name: string;
"[iterator]"(): ArrayIterator<MimeType>;
item(index: number): MimeType;
namedItem(name: string): MimeType;
[index: number]: MimeType;
}
description: string;
filename: string;
length: number;
name: string;
"[iterator]"(): ArrayIterator<MimeType>;
item(index: number): MimeType;
namedItem(name: string): MimeType;
[index: number]: MimeType;
}
Indexable
 Index
Properties
Methods
 Properties
Readonlydescription
description: string
Readonlyfilename
filename: string
Returns the plugin library's filename, if applicable on the current platform.
Readonlylength
length: number
Returns the number of MIME types, represented by MimeType objects, supported by the plugin.
Readonlyname
name: string
Returns the plugin's name.
 Methods
[iterator]
- "[iterator]"(): ArrayIterator<MimeType>
- Returns ArrayIterator<MimeType>
Returns the plugin's description.