We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdaca6c commit 78e6f25Copy full SHA for 78e6f25
index.d.ts
@@ -170,6 +170,13 @@ interface JSON {
170
*/
171
declare var JSON: JSON;
172
173
+// String.d.ts
174
+
175
+interface String {
176
+ /** Removes the leading and trailing white space and line terminator characters from a string. */
177
+ trim(): string;
178
+}
179
180
// Object.d.ts
181
182
@@ -285,13 +292,6 @@ interface ObjectConstructor {
285
292
286
293
declare var Object: ObjectConstructor;
287
294
288
-// String.d.ts
289
-
290
-interface String {
291
- /** Removes the leading and trailing white space and line terminator characters from a string. */
- trim(): string;
-}
295
// Date.d.ts
296
297
/** Enables basic storage and retrieval of dates and times. */
0 commit comments