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
Readonly
description
description: string
Readonly
filename
filename: string
Returns the plugin library's filename, if applicable on the current platform.
Readonly
length
length: number
Returns the number of MIME types, represented by MimeType objects, supported by the plugin.
Readonly
name
name: string
Returns the plugin's name.
Methods
[iterator]
- [iterator](): ArrayIterator<MimeType>
Returns ArrayIterator<MimeType>
Returns the plugin's description.