You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: baselines/dom.generated.d.ts
+29Lines changed: 29 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10012,38 +10012,49 @@ declare var MessagePort: {
10012
10012
};
10013
10013
10014
10014
/** Provides contains information about a MIME type associated with a particular plugin. NavigatorPlugins.mimeTypes returns an array of this object. */
10015
+
/** @deprecated */
10015
10016
interface MimeType {
10016
10017
/**
10017
10018
* Returns the MIME type's description.
10018
10019
*/
10020
+
/** @deprecated */
10019
10021
readonly description: undefined;
10020
10022
/**
10021
10023
* Returns the Plugin object that implements this MIME type.
10022
10024
*/
10025
+
/** @deprecated */
10023
10026
readonly enabledPlugin: undefined;
10024
10027
/**
10025
10028
* Returns the MIME type's typical file extensions, in a comma-separated list.
10026
10029
*/
10030
+
/** @deprecated */
10027
10031
readonly suffixes: undefined;
10028
10032
/**
10029
10033
* Returns the MIME type.
10030
10034
*/
10035
+
/** @deprecated */
10031
10036
readonly type: undefined;
10032
10037
}
10033
10038
10039
+
/** @deprecated */
10034
10040
declare var MimeType: {
10035
10041
readonly prototype: MimeType;
10036
10042
new(): MimeType;
10037
10043
};
10038
10044
10039
10045
/** Returns an array of MimeType instances, each of which contains information about a supported browser plugins. This object is returned by NavigatorPlugins.mimeTypes. */
@@ -11192,45 +11207,59 @@ declare var PictureInPictureWindow: {
11192
11207
};
11193
11208
11194
11209
/** Provides information about a browser plugin. */
11210
+
/** @deprecated */
11195
11211
interface Plugin {
11196
11212
/**
11197
11213
* Returns the plugin's description.
11198
11214
*/
11215
+
/** @deprecated */
11199
11216
readonly description: undefined;
11200
11217
/**
11201
11218
* Returns the plugin library's filename, if applicable on the current platform.
11202
11219
*/
11220
+
/** @deprecated */
11203
11221
readonly filename: undefined;
11204
11222
/**
11205
11223
* Returns the number of MIME types, represented by MimeType objects, supported by the plugin.
11206
11224
*/
11225
+
/** @deprecated */
11207
11226
readonly length: undefined;
11208
11227
/**
11209
11228
* Returns the plugin's name.
11210
11229
*/
11230
+
/** @deprecated */
11211
11231
readonly name: undefined;
11212
11232
/**
11213
11233
* Returns the specified MimeType object.
11214
11234
*/
11235
+
/** @deprecated */
11215
11236
item(index: number): void;
11237
+
/** @deprecated */
11216
11238
namedItem(name: string): void;
11217
11239
[index: number]: undefined;
11218
11240
}
11219
11241
11242
+
/** @deprecated */
11220
11243
declare var Plugin: {
11221
11244
readonly prototype: Plugin;
11222
11245
new(): Plugin;
11223
11246
};
11224
11247
11225
11248
/** Used to store a list of Plugin objects describing the available plugins; it's returned by the window.navigator.plugins property. The PluginArray is not a JavaScript array, but has the length property and supports accessing individual items using bracket notation (plugins[2]), as well as via item(index) and namedItem("name") methods. */
0 commit comments