microsoft-graph 3.4.4 → 3.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/cjs/services/cartesianAddress.d.ts.map +1 -1
  2. package/dist/cjs/services/cartesianAddress.js +18 -10
  3. package/dist/esm/services/cartesianAddress.d.ts.map +1 -1
  4. package/dist/esm/services/cartesianAddress.js +18 -10
  5. package/docs/api/BadRequestError.md +4 -4
  6. package/docs/api/BadTemplateError.md +4 -4
  7. package/docs/api/BandwidthLimitExceededError.md +4 -4
  8. package/docs/api/ConflictError.md +4 -4
  9. package/docs/api/EnvironmentVariableMissingError.md +4 -4
  10. package/docs/api/ForbiddenError.md +4 -4
  11. package/docs/api/GatewayTimeoutError.md +4 -4
  12. package/docs/api/GoneError.md +4 -4
  13. package/docs/api/InconsistentContextError.md +4 -4
  14. package/docs/api/InsufficientStorageError.md +4 -4
  15. package/docs/api/InternalServerError.md +4 -4
  16. package/docs/api/InvalidArgumentError.md +4 -4
  17. package/docs/api/InvalidOperationError.md +4 -4
  18. package/docs/api/LengthRequiredError.md +4 -4
  19. package/docs/api/LockedError.md +4 -4
  20. package/docs/api/MethodNotAllowedError.md +4 -4
  21. package/docs/api/NeverError.md +4 -4
  22. package/docs/api/NotAcceptableError.md +4 -4
  23. package/docs/api/NotFoundError.md +4 -4
  24. package/docs/api/NotImplementedError.md +4 -4
  25. package/docs/api/PaymentRequiredError.md +4 -4
  26. package/docs/api/PreconditionFailedError.md +4 -4
  27. package/docs/api/ProtocolError.md +4 -4
  28. package/docs/api/RequestEntityTooLargeError.md +4 -4
  29. package/docs/api/RequestFailedError.md +4 -4
  30. package/docs/api/RequestTimeoutError.md +4 -4
  31. package/docs/api/RequestedRangeNotSatisfiableError.md +4 -4
  32. package/docs/api/ServiceUnavailableError.md +4 -4
  33. package/docs/api/TooManyRequestsError.md +4 -4
  34. package/docs/api/UnauthorizedError.md +4 -4
  35. package/docs/api/UnprocessableEntityError.md +4 -4
  36. package/docs/api/UnsupportedAddressTypeError.md +4 -4
  37. package/docs/api/UnsupportedMediaTypeError.md +4 -4
  38. package/docs/api/cartesianAddress.md +1 -1
  39. package/docs/api/streamDriveItemContent.md +2 -2
  40. package/package.json +6 -6
@@ -1 +1 @@
1
- {"version":3,"file":"cartesianAddress.d.ts","sourceRoot":"","sources":["../../../src/services/cartesianAddress.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAIxD;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,OAAO,GAAG,SAAS,CAiB9D;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,SAAS,GAAG,OAAO,CAqBzE"}
1
+ {"version":3,"file":"cartesianAddress.d.ts","sourceRoot":"","sources":["../../../src/services/cartesianAddress.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAIxD;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,OAAO,GAAG,SAAS,CAsB9D;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,SAAS,GAAG,OAAO,CA0BzE"}
@@ -25,11 +25,15 @@ function addressToCartesian(address) {
25
25
  const ay = (0, addressOffset_ts_1.rowAddressToOffset)(startRow);
26
26
  const bx = (0, addressOffset_ts_1.columnAddressToOffset)(endColumn);
27
27
  const by = (0, addressOffset_ts_1.rowAddressToOffset)(endRow);
28
- if (ax > bx) {
29
- throw new InvalidArgumentError_ts_1.default(`Invalid address ${address}. Start column (${startColumn}) is after end column (${endColumn}).`);
30
- }
31
- if (ay > by) {
32
- throw new InvalidArgumentError_ts_1.default(`Invalid address ${address}. Start row (${startRow}) is after end row (${endRow}).`);
28
+ if (ax > bx || ay > by) {
29
+ let error = `Invalid address '${address}'. `;
30
+ if (ax > bx) {
31
+ error += `Start column (${startColumn}) is after end column (${endColumn}). `;
32
+ }
33
+ if (ay > by) {
34
+ error += `Start row (${startRow}) is after end row (${endRow}).`;
35
+ }
36
+ throw new InvalidArgumentError_ts_1.default(error);
33
37
  }
34
38
  return { ax, ay, bx, by };
35
39
  }
@@ -50,11 +54,15 @@ function cartesianToAddress({ ax, ay, bx, by }) {
50
54
  endRow,
51
55
  endColumn,
52
56
  });
53
- if (ax > bx) {
54
- throw new InvalidArgumentError_ts_1.default(`Invalid address ${address}. Start column (${startColumn}) is after end column (${endColumn}).`);
55
- }
56
- if (ay > by) {
57
- throw new InvalidArgumentError_ts_1.default(`Invalid address ${address}. Start row (${startRow}) is after end row (${endRow}).`);
57
+ if (ax > bx || ay > by) {
58
+ let error = `Invalid address '${address}'. `;
59
+ if (ax > bx) {
60
+ error += `Start column (${startColumn}) is after end column (${endColumn}). `;
61
+ }
62
+ if (ay > by) {
63
+ error += `Start row (${startRow}) is after end row (${endRow}).`;
64
+ }
65
+ throw new InvalidArgumentError_ts_1.default(error);
58
66
  }
59
67
  return address;
60
68
  }
@@ -1 +1 @@
1
- {"version":3,"file":"cartesianAddress.d.ts","sourceRoot":"","sources":["../../../src/services/cartesianAddress.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAIxD;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,OAAO,GAAG,SAAS,CAiB9D;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,SAAS,GAAG,OAAO,CAqBzE"}
1
+ {"version":3,"file":"cartesianAddress.d.ts","sourceRoot":"","sources":["../../../src/services/cartesianAddress.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAIxD;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,OAAO,GAAG,SAAS,CAsB9D;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,SAAS,GAAG,OAAO,CA0BzE"}
@@ -18,11 +18,15 @@ export function addressToCartesian(address) {
18
18
  const ay = rowAddressToOffset(startRow);
19
19
  const bx = columnAddressToOffset(endColumn);
20
20
  const by = rowAddressToOffset(endRow);
21
- if (ax > bx) {
22
- throw new InvalidArgumentError(`Invalid address ${address}. Start column (${startColumn}) is after end column (${endColumn}).`);
23
- }
24
- if (ay > by) {
25
- throw new InvalidArgumentError(`Invalid address ${address}. Start row (${startRow}) is after end row (${endRow}).`);
21
+ if (ax > bx || ay > by) {
22
+ let error = `Invalid address '${address}'. `;
23
+ if (ax > bx) {
24
+ error += `Start column (${startColumn}) is after end column (${endColumn}). `;
25
+ }
26
+ if (ay > by) {
27
+ error += `Start row (${startRow}) is after end row (${endRow}).`;
28
+ }
29
+ throw new InvalidArgumentError(error);
26
30
  }
27
31
  return { ax, ay, bx, by };
28
32
  }
@@ -43,11 +47,15 @@ export function cartesianToAddress({ ax, ay, bx, by }) {
43
47
  endRow,
44
48
  endColumn,
45
49
  });
46
- if (ax > bx) {
47
- throw new InvalidArgumentError(`Invalid address ${address}. Start column (${startColumn}) is after end column (${endColumn}).`);
48
- }
49
- if (ay > by) {
50
- throw new InvalidArgumentError(`Invalid address ${address}. Start row (${startRow}) is after end row (${endRow}).`);
50
+ if (ax > bx || ay > by) {
51
+ let error = `Invalid address '${address}'. `;
52
+ if (ax > bx) {
53
+ error += `Start column (${startColumn}) is after end column (${endColumn}). `;
54
+ }
55
+ if (ay > by) {
56
+ error += `Start row (${startRow}) is after end row (${endRow}).`;
57
+ }
58
+ throw new InvalidArgumentError(error);
51
59
  }
52
60
  return address;
53
61
  }
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182
 
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182
 
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182
 
@@ -86,7 +86,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
86
86
 
87
87
  > `static` **stackTraceLimit**: `number`
88
88
 
89
- Defined in: node\_modules/@types/node/globals.d.ts:161
89
+ Defined in: node\_modules/@types/node/globals.d.ts:162
90
90
 
91
91
  The `Error.stackTraceLimit` property specifies the number of stack frames
92
92
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -108,7 +108,7 @@ not capture any frames.
108
108
 
109
109
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
110
110
 
111
- Defined in: node\_modules/@types/node/globals.d.ts:145
111
+ Defined in: node\_modules/@types/node/globals.d.ts:146
112
112
 
113
113
  Creates a `.stack` property on `targetObject`, which when accessed returns
114
114
  a string representing the location in the code at which
@@ -173,14 +173,14 @@ a();
173
173
 
174
174
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
175
175
 
176
- Defined in: node\_modules/@types/node/globals.d.ts:149
176
+ Defined in: node\_modules/@types/node/globals.d.ts:150
177
177
 
178
178
  ###### Parameters
179
179
 
180
180
  | Parameter | Type |
181
181
  | ------ | ------ |
182
182
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
183
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
183
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
184
184
 
185
185
  ###### Returns
186
186
 
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182
 
@@ -84,7 +84,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
84
84
 
85
85
  > `static` **stackTraceLimit**: `number`
86
86
 
87
- Defined in: node\_modules/@types/node/globals.d.ts:161
87
+ Defined in: node\_modules/@types/node/globals.d.ts:162
88
88
 
89
89
  The `Error.stackTraceLimit` property specifies the number of stack frames
90
90
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -106,7 +106,7 @@ not capture any frames.
106
106
 
107
107
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
108
108
 
109
- Defined in: node\_modules/@types/node/globals.d.ts:145
109
+ Defined in: node\_modules/@types/node/globals.d.ts:146
110
110
 
111
111
  Creates a `.stack` property on `targetObject`, which when accessed returns
112
112
  a string representing the location in the code at which
@@ -171,14 +171,14 @@ a();
171
171
 
172
172
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
173
173
 
174
- Defined in: node\_modules/@types/node/globals.d.ts:149
174
+ Defined in: node\_modules/@types/node/globals.d.ts:150
175
175
 
176
176
  ###### Parameters
177
177
 
178
178
  | Parameter | Type |
179
179
  | ------ | ------ |
180
180
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
181
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
181
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
182
182
 
183
183
  ###### Returns
184
184
 
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182
 
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182
 
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182
 
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182
 
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182
 
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182
 
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182
 
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182
 
@@ -82,7 +82,7 @@ Defined in: node\_modules/typescript/lib/lib.es5.d.ts:1078
82
82
 
83
83
  > `static` **stackTraceLimit**: `number`
84
84
 
85
- Defined in: node\_modules/@types/node/globals.d.ts:161
85
+ Defined in: node\_modules/@types/node/globals.d.ts:162
86
86
 
87
87
  The `Error.stackTraceLimit` property specifies the number of stack frames
88
88
  collected by a stack trace (whether generated by `new Error().stack` or
@@ -104,7 +104,7 @@ not capture any frames.
104
104
 
105
105
  > `static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
106
106
 
107
- Defined in: node\_modules/@types/node/globals.d.ts:145
107
+ Defined in: node\_modules/@types/node/globals.d.ts:146
108
108
 
109
109
  Creates a `.stack` property on `targetObject`, which when accessed returns
110
110
  a string representing the location in the code at which
@@ -169,14 +169,14 @@ a();
169
169
 
170
170
  > `static` **prepareStackTrace**(`err`, `stackTraces`): `any`
171
171
 
172
- Defined in: node\_modules/@types/node/globals.d.ts:149
172
+ Defined in: node\_modules/@types/node/globals.d.ts:150
173
173
 
174
174
  ###### Parameters
175
175
 
176
176
  | Parameter | Type |
177
177
  | ------ | ------ |
178
178
  | `err` | [`Error`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error) |
179
- | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4771e16937e188c0e0eca9749d208676f85fefb9/types/node/globals.d.ts#L170)[] |
179
+ | `stackTraces` | [`CallSite`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/globals.d.ts#L171)[] |
180
180
 
181
181
  ###### Returns
182
182