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
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -10015,19 +10015,19 @@ interface MimeType {
10015
10015
/**
10016
10016
* Returns the MIME type's description.
10017
10017
*/
10018
-
readonly description: string;
10018
+
readonly description: undefined;
10019
10019
/**
10020
10020
* Returns the Plugin object that implements this MIME type.
10021
10021
*/
10022
-
readonly enabledPlugin: Plugin;
10022
+
readonly enabledPlugin: undefined;
10023
10023
/**
10024
10024
* Returns the MIME type's typical file extensions, in a comma-separated list.
10025
10025
*/
10026
-
readonly suffixes: string;
10026
+
readonly suffixes: undefined;
10027
10027
/**
10028
10028
* Returns the MIME type.
10029
10029
*/
10030
-
readonly type: string;
10030
+
readonly type: undefined;
10031
10031
}
10032
10032
10033
10033
declare var MimeType: {
@@ -10038,9 +10038,9 @@ declare var MimeType: {
10038
10038
/** Returns an array of MimeType instances, each of which contains information about a supported browser plugins. This object is returned by NavigatorPlugins.mimeTypes. */
10039
10039
interface MimeTypeArray {
10040
10040
readonly length: number;
10041
-
item(index: number): MimeType | null;
10042
-
namedItem(name: string): MimeType | null;
10043
-
[index: number]: MimeType;
10041
+
item(index: number): any;
10042
+
namedItem(name: string): any;
10043
+
[index: number]: any;
10044
10044
}
10045
10045
10046
10046
declare var MimeTypeArray: {
@@ -11187,25 +11187,25 @@ interface Plugin {
11187
11187
/**
11188
11188
* Returns the plugin's description.
11189
11189
*/
11190
-
readonly description: string;
11190
+
readonly description: undefined;
11191
11191
/**
11192
11192
* Returns the plugin library's filename, if applicable on the current platform.
11193
11193
*/
11194
-
readonly filename: string;
11194
+
readonly filename: undefined;
11195
11195
/**
11196
11196
* Returns the number of MIME types, represented by MimeType objects, supported by the plugin.
11197
11197
*/
11198
-
readonly length: number;
11198
+
readonly length: undefined;
11199
11199
/**
11200
11200
* Returns the plugin's name.
11201
11201
*/
11202
-
readonly name: string;
11202
+
readonly name: undefined;
11203
11203
/**
11204
11204
* Returns the specified MimeType object.
11205
11205
*/
11206
-
item(index: number): MimeType | null;
11207
-
namedItem(name: string): MimeType | null;
11208
-
[index: number]: MimeType;
11206
+
item(index: number): void;
11207
+
namedItem(name: string): void;
11208
+
[index: number]: undefined;
11209
11209
}
11210
11210
11211
11211
declare var Plugin: {
@@ -11216,10 +11216,10 @@ declare var Plugin: {
11216
11216
/** 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