If you try to set up node with typescript / typings, you can get duplicate identifier errors, if you don’t do it quite right (I’ve listed what this looks like below).
To fix this, look in typings/main.d.ts and you will likely find duplicates (e.g. perhaps you installed Node bindings with both –ambient and without)
This is what you want:
///
Not this:
///
///
typings/main/ambient/node/index.d.ts(455,9): error TS2502: 'BuffType' is referenced directly or indirectly in its own type annotation. typings/main/ambient/node/index.d.ts(456,9): error TS2502: 'SlowBuffType' is referenced directly or indirectly in its own type annotation. typings/main/ambient/node/index.d.ts(457,26): error TS2300: Duplicate identifier 'Buffer'. typings/main/ambient/node/index.d.ts(457,50): error TS2300: Duplicate identifier 'SlowBuffer'. typings/main/ambient/node/index.d.ts(462,9): error TS2300: Duplicate identifier 'encodeURIComponent'. typings/main/ambient/node/index.d.ts(466,9): error TS2300: Duplicate identifier 'maxKeys'. typings/main/ambient/node/index.d.ts(467,9): error TS2300: Duplicate identifier 'decodeURIComponent'. typings/main/ambient/node/index.d.ts(478,18): error TS2300: Duplicate identifier 'EventEmitter'. typings/main/ambient/node/index.d.ts(502,9): error TS2300: Duplicate identifier 'protocol'. typings/main/ambient/node/index.d.ts(503,9): error TS2300: Duplicate identifier 'host'. typings/main/ambient/node/index.d.ts(504,9): error TS2300: Duplicate identifier 'hostname'. typings/main/ambient/node/index.d.ts(505,9): error TS2300: Duplicate identifier 'family'. typings/main/ambient/node/index.d.ts(506,9): error TS2300: Duplicate identifier 'port'. typings/main/ambient/node/index.d.ts(507,9): error TS2300: Duplicate identifier 'localAddress'. typings/main/ambient/node/index.d.ts(508,9): error TS2300: Duplicate identifier 'socketPath'. typings/main/ambient/node/index.d.ts(509,9): error TS2300: Duplicate identifier 'method'. typings/main/ambient/node/index.d.ts(510,9): error TS2300: Duplicate identifier 'path'. typings/main/ambient/node/index.d.ts(511,9): error TS2300: Duplicate identifier 'headers'. typings/main/ambient/node/index.d.ts(512,9): error TS2300: Duplicate identifier 'auth'. typings/main/ambient/node/index.d.ts(513,9): error TS2300: Duplicate identifier 'agent'. typings/main/ambient/node/index.d.ts(518,9): error TS2300: Duplicate identifier 'maxHeadersCount'. typings/main/ambient/node/index.d.ts(519,9): error TS2300: Duplicate identifier 'timeout'. typings/main/ambient/node/index.d.ts(525,9): error TS2300: Duplicate identifier 'connection'. typings/main/ambient/node/index.d.ts(538,9): error TS2300: Duplicate identifier 'statusCode'. typings/main/ambient/node/index.d.ts(539,9): error TS2300: Duplicate identifier 'statusMessage'. typings/main/ambient/node/index.d.ts(540,9): error TS2300: Duplicate identifier 'headersSent'. typings/main/ambient/node/index.d.ts(542,9): error TS2300: Duplicate identifier 'sendDate'. typings/main/ambient/node/index.d.ts(582,9): error TS2300: Duplicate identifier 'httpVersion'. typings/main/ambient/node/index.d.ts(583,9): error TS2300: Duplicate identifier 'headers'. typings/main/ambient/node/index.d.ts(584,9): error TS2300: Duplicate identifier 'rawHeaders'. typings/main/ambient/node/index.d.ts(585,9): error TS2300: Duplicate identifier 'trailers'. typings/main/ambient/node/index.d.ts(586,9): error TS2300: Duplicate identifier 'rawTrailers'. typings/main/ambient/node/index.d.ts(591,9): error TS2300: Duplicate identifier 'method'. typings/main/ambient/node/index.d.ts(595,9): error TS2300: Duplicate identifier 'url'. typings/main/ambient/node/index.d.ts(599,9): error TS2300: Duplicate identifier 'statusCode'. typings/main/ambient/node/index.d.ts(603,9): error TS2300: Duplicate identifier 'statusMessage'. typings/main/ambient/node/index.d.ts(604,9): error TS2300: Duplicate identifier 'socket'. typings/main/ambient/node/index.d.ts(615,9): error TS2300: Duplicate identifier 'keepAlive'. typings/main/ambient/node/index.d.ts(620,9): error TS2300: Duplicate identifier 'keepAliveMsecs'. typings/main/ambient/node/index.d.ts(624,9): error TS2300: Duplicate identifier 'maxSockets'. typings/main/ambient/node/index.d.ts(628,9): error TS2300: Duplicate identifier 'maxFreeSockets'. typings/main/ambient/node/index.d.ts(631,18): error TS2300: Duplicate identifier 'Agent'. typings/main/ambient/node/index.d.ts(665,9): error TS2300: Duplicate identifier 'exec'. typings/main/ambient/node/index.d.ts(666,9): error TS2300: Duplicate identifier 'args'. typings/main/ambient/node/index.d.ts(667,9): error TS2300: Duplicate identifier 'silent'. typings/main/ambient/node/index.d.ts(671,9): error TS2300: Duplicate identifier 'address'. typings/main/ambient/node/index.d.ts(672,9): error TS2300: Duplicate identifier 'port'. typings/main/ambient/node/index.d.ts(673,9): error TS2300: Duplicate identifier 'addressType'. typings/main/ambient/node/index.d.ts(676,18): error TS2300: Duplicate identifier 'Worker'. typings/main/ambient/node/index.d.ts(719,36): error TS2300: Duplicate identifier 'chunkSize'. typings/main/ambient/node/index.d.ts(719,56): error TS2300: Duplicate identifier 'windowBits'. typings/main/ambient/node/index.d.ts(719,77): error TS2300: Duplicate identifier 'level'. typings/main/ambient/node/index.d.ts(719,93): error TS2300: Duplicate identifier 'memLevel'. typings/main/ambient/node/index.d.ts(719,112): error TS2300: Duplicate identifier 'strategy'. typings/main/ambient/node/index.d.ts(719,131): error TS2300: Duplicate identifier 'dictionary'. typings/main/ambient/node/index.d.ts(788,9): error TS2300: Duplicate identifier 'model'. typings/main/ambient/node/index.d.ts(789,9): error TS2300: Duplicate identifier 'speed'. typings/main/ambient/node/index.d.ts(790,9): error TS2300: Duplicate identifier 'times'. typings/main/ambient/node/index.d.ts(800,9): error TS2300: Duplicate identifier 'address'. typings/main/ambient/node/index.d.ts(801,9): error TS2300: Duplicate identifier 'netmask'. typings/main/ambient/node/index.d.ts(802,9): error TS2300: Duplicate identifier 'family'. typings/main/ambient/node/index.d.ts(803,9): error TS2300: Duplicate identifier 'mac'. typings/main/ambient/node/index.d.ts(804,9): error TS2300: Duplicate identifier 'internal'. typings/main/ambient/node/index.d.ts(830,9): error TS2300: Duplicate identifier 'pfx'. typings/main/ambient/node/index.d.ts(831,9): error TS2300: Duplicate identifier 'key'. typings/main/ambient/node/index.d.ts(832,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/ambient/node/index.d.ts(833,9): error TS2300: Duplicate identifier 'cert'. typings/main/ambient/node/index.d.ts(834,9): error TS2300: Duplicate identifier 'ca'. typings/main/ambient/node/index.d.ts(835,9): error TS2300: Duplicate identifier 'crl'. typings/main/ambient/node/index.d.ts(836,9): error TS2300: Duplicate identifier 'ciphers'. typings/main/ambient/node/index.d.ts(837,9): error TS2300: Duplicate identifier 'honorCipherOrder'. typings/main/ambient/node/index.d.ts(838,9): error TS2300: Duplicate identifier 'requestCert'. typings/main/ambient/node/index.d.ts(839,9): error TS2300: Duplicate identifier 'rejectUnauthorized'. typings/main/ambient/node/index.d.ts(840,9): error TS2300: Duplicate identifier 'NPNProtocols'. typings/main/ambient/node/index.d.ts(841,9): error TS2300: Duplicate identifier 'SNICallback'. typings/main/ambient/node/index.d.ts(845,9): error TS2300: Duplicate identifier 'pfx'. typings/main/ambient/node/index.d.ts(846,9): error TS2300: Duplicate identifier 'key'. typings/main/ambient/node/index.d.ts(847,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/ambient/node/index.d.ts(848,9): error TS2300: Duplicate identifier 'cert'. typings/main/ambient/node/index.d.ts(849,9): error TS2300: Duplicate identifier 'ca'. typings/main/ambient/node/index.d.ts(850,9): error TS2300: Duplicate identifier 'ciphers'. typings/main/ambient/node/index.d.ts(851,9): error TS2300: Duplicate identifier 'rejectUnauthorized'. typings/main/ambient/node/index.d.ts(852,9): error TS2300: Duplicate identifier 'secureProtocol'. typings/main/ambient/node/index.d.ts(856,9): error TS2300: Duplicate identifier 'maxSockets'. typings/main/ambient/node/index.d.ts(857,9): error TS2300: Duplicate identifier 'sockets'. typings/main/ambient/node/index.d.ts(858,9): error TS2300: Duplicate identifier 'requests'. typings/main/ambient/node/index.d.ts(888,9): error TS2300: Duplicate identifier 'prompt'. typings/main/ambient/node/index.d.ts(889,9): error TS2300: Duplicate identifier 'input'. typings/main/ambient/node/index.d.ts(890,9): error TS2300: Duplicate identifier 'output'. typings/main/ambient/node/index.d.ts(891,9): error TS2300: Duplicate identifier 'terminal'. typings/main/ambient/node/index.d.ts(892,9): error TS2300: Duplicate identifier 'eval'. typings/main/ambient/node/index.d.ts(893,9): error TS2300: Duplicate identifier 'useColors'. typings/main/ambient/node/index.d.ts(894,9): error TS2300: Duplicate identifier 'useGlobal'. typings/main/ambient/node/index.d.ts(895,9): error TS2300: Duplicate identifier 'ignoreUndefined'. typings/main/ambient/node/index.d.ts(896,9): error TS2300: Duplicate identifier 'writer'. typings/main/ambient/node/index.d.ts(906,9): error TS2300: Duplicate identifier 'sequence'. typings/main/ambient/node/index.d.ts(907,9): error TS2300: Duplicate identifier 'name'. typings/main/ambient/node/index.d.ts(908,9): error TS2300: Duplicate identifier 'ctrl'. typings/main/ambient/node/index.d.ts(909,9): error TS2300: Duplicate identifier 'meta'. typings/main/ambient/node/index.d.ts(910,9): error TS2300: Duplicate identifier 'shift'. typings/main/ambient/node/index.d.ts(929,9): error TS2300: Duplicate identifier 'completions'. typings/main/ambient/node/index.d.ts(930,9): error TS2300: Duplicate identifier 'line'. typings/main/ambient/node/index.d.ts(934,9): error TS2300: Duplicate identifier 'input'. typings/main/ambient/node/index.d.ts(935,9): error TS2300: Duplicate identifier 'output'. typings/main/ambient/node/index.d.ts(936,9): error TS2300: Duplicate identifier 'completer'. typings/main/ambient/node/index.d.ts(937,9): error TS2300: Duplicate identifier 'terminal'. typings/main/ambient/node/index.d.ts(938,9): error TS2300: Duplicate identifier 'historySize'. typings/main/ambient/node/index.d.ts(953,9): error TS2300: Duplicate identifier 'filename'. typings/main/ambient/node/index.d.ts(954,9): error TS2300: Duplicate identifier 'lineOffset'. typings/main/ambient/node/index.d.ts(955,9): error TS2300: Duplicate identifier 'columnOffset'. typings/main/ambient/node/index.d.ts(956,9): error TS2300: Duplicate identifier 'displayErrors'. typings/main/ambient/node/index.d.ts(957,9): error TS2300: Duplicate identifier 'timeout'. typings/main/ambient/node/index.d.ts(958,9): error TS2300: Duplicate identifier 'cachedData'. typings/main/ambient/node/index.d.ts(959,9): error TS2300: Duplicate identifier 'produceCachedData'. typings/main/ambient/node/index.d.ts(962,9): error TS2300: Duplicate identifier 'filename'. typings/main/ambient/node/index.d.ts(963,9): error TS2300: Duplicate identifier 'lineOffset'. typings/main/ambient/node/index.d.ts(964,9): error TS2300: Duplicate identifier 'columnOffset'. typings/main/ambient/node/index.d.ts(965,9): error TS2300: Duplicate identifier 'displayErrors'. typings/main/ambient/node/index.d.ts(966,9): error TS2300: Duplicate identifier 'timeout'. typings/main/ambient/node/index.d.ts(968,18): error TS2300: Duplicate identifier 'Script'. typings/main/ambient/node/index.d.ts(987,9): error TS2300: Duplicate identifier 'stdin'. typings/main/ambient/node/index.d.ts(988,9): error TS2300: Duplicate identifier 'stdout'. typings/main/ambient/node/index.d.ts(989,9): error TS2300: Duplicate identifier 'stderr'. typings/main/ambient/node/index.d.ts(990,9): error TS2300: Duplicate identifier 'stdio'. typings/main/ambient/node/index.d.ts(991,9): error TS2300: Duplicate identifier 'pid'. typings/main/ambient/node/index.d.ts(999,9): error TS2300: Duplicate identifier 'cwd'. typings/main/ambient/node/index.d.ts(1000,9): error TS2300: Duplicate identifier 'env'. typings/main/ambient/node/index.d.ts(1001,9): error TS2300: Duplicate identifier 'stdio'. typings/main/ambient/node/index.d.ts(1002,9): error TS2300: Duplicate identifier 'detached'. typings/main/ambient/node/index.d.ts(1003,9): error TS2300: Duplicate identifier 'uid'. typings/main/ambient/node/index.d.ts(1004,9): error TS2300: Duplicate identifier 'gid'. typings/main/ambient/node/index.d.ts(1005,9): error TS2300: Duplicate identifier 'shell'. typings/main/ambient/node/index.d.ts(1010,9): error TS2300: Duplicate identifier 'cwd'. typings/main/ambient/node/index.d.ts(1011,9): error TS2300: Duplicate identifier 'env'. typings/main/ambient/node/index.d.ts(1012,9): error TS2300: Duplicate identifier 'shell'. typings/main/ambient/node/index.d.ts(1013,9): error TS2300: Duplicate identifier 'timeout'. typings/main/ambient/node/index.d.ts(1014,9): error TS2300: Duplicate identifier 'maxBuffer'. typings/main/ambient/node/index.d.ts(1015,9): error TS2300: Duplicate identifier 'killSignal'. typings/main/ambient/node/index.d.ts(1016,9): error TS2300: Duplicate identifier 'uid'. typings/main/ambient/node/index.d.ts(1017,9): error TS2300: Duplicate identifier 'gid'. typings/main/ambient/node/index.d.ts(1020,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1023,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1032,9): error TS2300: Duplicate identifier 'cwd'. typings/main/ambient/node/index.d.ts(1033,9): error TS2300: Duplicate identifier 'env'. typings/main/ambient/node/index.d.ts(1034,9): error TS2300: Duplicate identifier 'timeout'. typings/main/ambient/node/index.d.ts(1035,9): error TS2300: Duplicate identifier 'maxBuffer'. typings/main/ambient/node/index.d.ts(1036,9): error TS2300: Duplicate identifier 'killSignal'. typings/main/ambient/node/index.d.ts(1037,9): error TS2300: Duplicate identifier 'uid'. typings/main/ambient/node/index.d.ts(1038,9): error TS2300: Duplicate identifier 'gid'. typings/main/ambient/node/index.d.ts(1041,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1044,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1058,9): error TS2300: Duplicate identifier 'cwd'. typings/main/ambient/node/index.d.ts(1059,9): error TS2300: Duplicate identifier 'env'. typings/main/ambient/node/index.d.ts(1060,9): error TS2300: Duplicate identifier 'execPath'. typings/main/ambient/node/index.d.ts(1061,9): error TS2300: Duplicate identifier 'execArgv'. typings/main/ambient/node/index.d.ts(1062,9): error TS2300: Duplicate identifier 'silent'. typings/main/ambient/node/index.d.ts(1063,9): error TS2300: Duplicate identifier 'uid'. typings/main/ambient/node/index.d.ts(1064,9): error TS2300: Duplicate identifier 'gid'. typings/main/ambient/node/index.d.ts(1069,9): error TS2300: Duplicate identifier 'cwd'. typings/main/ambient/node/index.d.ts(1070,9): error TS2300: Duplicate identifier 'input'. typings/main/ambient/node/index.d.ts(1071,9): error TS2300: Duplicate identifier 'stdio'. typings/main/ambient/node/index.d.ts(1072,9): error TS2300: Duplicate identifier 'env'. typings/main/ambient/node/index.d.ts(1073,9): error TS2300: Duplicate identifier 'uid'. typings/main/ambient/node/index.d.ts(1074,9): error TS2300: Duplicate identifier 'gid'. typings/main/ambient/node/index.d.ts(1075,9): error TS2300: Duplicate identifier 'timeout'. typings/main/ambient/node/index.d.ts(1076,9): error TS2300: Duplicate identifier 'killSignal'. typings/main/ambient/node/index.d.ts(1077,9): error TS2300: Duplicate identifier 'maxBuffer'. typings/main/ambient/node/index.d.ts(1078,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1079,9): error TS2300: Duplicate identifier 'shell'. typings/main/ambient/node/index.d.ts(1082,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1085,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1088,9): error TS2300: Duplicate identifier 'pid'. typings/main/ambient/node/index.d.ts(1089,9): error TS2300: Duplicate identifier 'output'. typings/main/ambient/node/index.d.ts(1090,9): error TS2300: Duplicate identifier 'stdout'. typings/main/ambient/node/index.d.ts(1091,9): error TS2300: Duplicate identifier 'stderr'. typings/main/ambient/node/index.d.ts(1092,9): error TS2300: Duplicate identifier 'status'. typings/main/ambient/node/index.d.ts(1093,9): error TS2300: Duplicate identifier 'signal'. typings/main/ambient/node/index.d.ts(1094,9): error TS2300: Duplicate identifier 'error'. typings/main/ambient/node/index.d.ts(1105,9): error TS2300: Duplicate identifier 'cwd'. typings/main/ambient/node/index.d.ts(1106,9): error TS2300: Duplicate identifier 'input'. typings/main/ambient/node/index.d.ts(1107,9): error TS2300: Duplicate identifier 'stdio'. typings/main/ambient/node/index.d.ts(1108,9): error TS2300: Duplicate identifier 'env'. typings/main/ambient/node/index.d.ts(1109,9): error TS2300: Duplicate identifier 'shell'. typings/main/ambient/node/index.d.ts(1110,9): error TS2300: Duplicate identifier 'uid'. typings/main/ambient/node/index.d.ts(1111,9): error TS2300: Duplicate identifier 'gid'. typings/main/ambient/node/index.d.ts(1112,9): error TS2300: Duplicate identifier 'timeout'. typings/main/ambient/node/index.d.ts(1113,9): error TS2300: Duplicate identifier 'killSignal'. typings/main/ambient/node/index.d.ts(1114,9): error TS2300: Duplicate identifier 'maxBuffer'. typings/main/ambient/node/index.d.ts(1115,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1118,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1121,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1129,9): error TS2300: Duplicate identifier 'cwd'. typings/main/ambient/node/index.d.ts(1130,9): error TS2300: Duplicate identifier 'input'. typings/main/ambient/node/index.d.ts(1131,9): error TS2300: Duplicate identifier 'stdio'. typings/main/ambient/node/index.d.ts(1132,9): error TS2300: Duplicate identifier 'env'. typings/main/ambient/node/index.d.ts(1133,9): error TS2300: Duplicate identifier 'uid'. typings/main/ambient/node/index.d.ts(1134,9): error TS2300: Duplicate identifier 'gid'. typings/main/ambient/node/index.d.ts(1135,9): error TS2300: Duplicate identifier 'timeout'. typings/main/ambient/node/index.d.ts(1136,9): error TS2300: Duplicate identifier 'killSignal'. typings/main/ambient/node/index.d.ts(1137,9): error TS2300: Duplicate identifier 'maxBuffer'. typings/main/ambient/node/index.d.ts(1138,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1141,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1144,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1157,9): error TS2300: Duplicate identifier 'href'. typings/main/ambient/node/index.d.ts(1158,9): error TS2300: Duplicate identifier 'protocol'. typings/main/ambient/node/index.d.ts(1159,9): error TS2300: Duplicate identifier 'auth'. typings/main/ambient/node/index.d.ts(1160,9): error TS2300: Duplicate identifier 'hostname'. typings/main/ambient/node/index.d.ts(1161,9): error TS2300: Duplicate identifier 'port'. typings/main/ambient/node/index.d.ts(1162,9): error TS2300: Duplicate identifier 'host'. typings/main/ambient/node/index.d.ts(1163,9): error TS2300: Duplicate identifier 'pathname'. typings/main/ambient/node/index.d.ts(1164,9): error TS2300: Duplicate identifier 'search'. typings/main/ambient/node/index.d.ts(1165,9): error TS2300: Duplicate identifier 'query'. typings/main/ambient/node/index.d.ts(1166,9): error TS2300: Duplicate identifier 'slashes'. typings/main/ambient/node/index.d.ts(1167,9): error TS2300: Duplicate identifier 'hash'. typings/main/ambient/node/index.d.ts(1168,9): error TS2300: Duplicate identifier 'path'. typings/main/ambient/node/index.d.ts(1204,9): error TS2300: Duplicate identifier 'bufferSize'. typings/main/ambient/node/index.d.ts(1217,9): error TS2300: Duplicate identifier 'remoteAddress'. typings/main/ambient/node/index.d.ts(1218,9): error TS2300: Duplicate identifier 'remoteFamily'. typings/main/ambient/node/index.d.ts(1219,9): error TS2300: Duplicate identifier 'remotePort'. typings/main/ambient/node/index.d.ts(1220,9): error TS2300: Duplicate identifier 'localAddress'. typings/main/ambient/node/index.d.ts(1221,9): error TS2300: Duplicate identifier 'localPort'. typings/main/ambient/node/index.d.ts(1222,9): error TS2300: Duplicate identifier 'bytesRead'. typings/main/ambient/node/index.d.ts(1223,9): error TS2300: Duplicate identifier 'bytesWritten'. typings/main/ambient/node/index.d.ts(1238,9): error TS2300: Duplicate identifier 'port'. typings/main/ambient/node/index.d.ts(1239,9): error TS2300: Duplicate identifier 'host'. typings/main/ambient/node/index.d.ts(1240,9): error TS2300: Duplicate identifier 'backlog'. typings/main/ambient/node/index.d.ts(1241,9): error TS2300: Duplicate identifier 'path'. typings/main/ambient/node/index.d.ts(1242,9): error TS2300: Duplicate identifier 'exclusive'. typings/main/ambient/node/index.d.ts(1260,9): error TS2300: Duplicate identifier 'maxConnections'. typings/main/ambient/node/index.d.ts(1261,9): error TS2300: Duplicate identifier 'connections'. typings/main/ambient/node/index.d.ts(1280,9): error TS2300: Duplicate identifier 'address'. typings/main/ambient/node/index.d.ts(1281,9): error TS2300: Duplicate identifier 'port'. typings/main/ambient/node/index.d.ts(1282,9): error TS2300: Duplicate identifier 'size'. typings/main/ambient/node/index.d.ts(1286,9): error TS2300: Duplicate identifier 'address'. typings/main/ambient/node/index.d.ts(1287,9): error TS2300: Duplicate identifier 'family'. typings/main/ambient/node/index.d.ts(1288,9): error TS2300: Duplicate identifier 'port'. typings/main/ambient/node/index.d.ts(1318,9): error TS2300: Duplicate identifier 'dev'. typings/main/ambient/node/index.d.ts(1319,9): error TS2300: Duplicate identifier 'ino'. typings/main/ambient/node/index.d.ts(1320,9): error TS2300: Duplicate identifier 'mode'. typings/main/ambient/node/index.d.ts(1321,9): error TS2300: Duplicate identifier 'nlink'. typings/main/ambient/node/index.d.ts(1322,9): error TS2300: Duplicate identifier 'uid'. typings/main/ambient/node/index.d.ts(1323,9): error TS2300: Duplicate identifier 'gid'. typings/main/ambient/node/index.d.ts(1324,9): error TS2300: Duplicate identifier 'rdev'. typings/main/ambient/node/index.d.ts(1325,9): error TS2300: Duplicate identifier 'size'. typings/main/ambient/node/index.d.ts(1326,9): error TS2300: Duplicate identifier 'blksize'. typings/main/ambient/node/index.d.ts(1327,9): error TS2300: Duplicate identifier 'blocks'. typings/main/ambient/node/index.d.ts(1328,9): error TS2300: Duplicate identifier 'atime'. typings/main/ambient/node/index.d.ts(1329,9): error TS2300: Duplicate identifier 'mtime'. typings/main/ambient/node/index.d.ts(1330,9): error TS2300: Duplicate identifier 'ctime'. typings/main/ambient/node/index.d.ts(1331,9): error TS2300: Duplicate identifier 'birthtime'. typings/main/ambient/node/index.d.ts(1343,9): error TS2300: Duplicate identifier 'bytesWritten'. typings/main/ambient/node/index.d.ts(1597,9): error TS2300: Duplicate identifier 'root'. typings/main/ambient/node/index.d.ts(1601,9): error TS2300: Duplicate identifier 'dir'. typings/main/ambient/node/index.d.ts(1605,9): error TS2300: Duplicate identifier 'base'. typings/main/ambient/node/index.d.ts(1609,9): error TS2300: Duplicate identifier 'ext'. typings/main/ambient/node/index.d.ts(1613,9): error TS2300: Duplicate identifier 'name'. typings/main/ambient/node/index.d.ts(1753,9): error TS2300: Duplicate identifier 'host'. typings/main/ambient/node/index.d.ts(1754,9): error TS2300: Duplicate identifier 'port'. typings/main/ambient/node/index.d.ts(1755,9): error TS2300: Duplicate identifier 'pfx'. typings/main/ambient/node/index.d.ts(1756,9): error TS2300: Duplicate identifier 'key'. typings/main/ambient/node/index.d.ts(1757,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/ambient/node/index.d.ts(1758,9): error TS2300: Duplicate identifier 'cert'. typings/main/ambient/node/index.d.ts(1759,9): error TS2300: Duplicate identifier 'ca'. typings/main/ambient/node/index.d.ts(1760,9): error TS2300: Duplicate identifier 'crl'. typings/main/ambient/node/index.d.ts(1761,9): error TS2300: Duplicate identifier 'ciphers'. typings/main/ambient/node/index.d.ts(1762,9): error TS2300: Duplicate identifier 'honorCipherOrder'. typings/main/ambient/node/index.d.ts(1763,9): error TS2300: Duplicate identifier 'requestCert'. typings/main/ambient/node/index.d.ts(1764,9): error TS2300: Duplicate identifier 'rejectUnauthorized'. typings/main/ambient/node/index.d.ts(1765,9): error TS2300: Duplicate identifier 'NPNProtocols'. typings/main/ambient/node/index.d.ts(1766,9): error TS2300: Duplicate identifier 'SNICallback'. typings/main/ambient/node/index.d.ts(1770,9): error TS2300: Duplicate identifier 'host'. typings/main/ambient/node/index.d.ts(1771,9): error TS2300: Duplicate identifier 'port'. typings/main/ambient/node/index.d.ts(1772,9): error TS2300: Duplicate identifier 'socket'. typings/main/ambient/node/index.d.ts(1773,9): error TS2300: Duplicate identifier 'pfx'. typings/main/ambient/node/index.d.ts(1774,9): error TS2300: Duplicate identifier 'key'. typings/main/ambient/node/index.d.ts(1775,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/ambient/node/index.d.ts(1776,9): error TS2300: Duplicate identifier 'cert'. typings/main/ambient/node/index.d.ts(1777,9): error TS2300: Duplicate identifier 'ca'. typings/main/ambient/node/index.d.ts(1778,9): error TS2300: Duplicate identifier 'rejectUnauthorized'. typings/main/ambient/node/index.d.ts(1779,9): error TS2300: Duplicate identifier 'NPNProtocols'. typings/main/ambient/node/index.d.ts(1780,9): error TS2300: Duplicate identifier 'servername'. typings/main/ambient/node/index.d.ts(1791,9): error TS2300: Duplicate identifier 'maxConnections'. typings/main/ambient/node/index.d.ts(1792,9): error TS2300: Duplicate identifier 'connections'. typings/main/ambient/node/index.d.ts(1796,9): error TS2300: Duplicate identifier 'authorized'. typings/main/ambient/node/index.d.ts(1797,9): error TS2300: Duplicate identifier 'authorizationError'. typings/main/ambient/node/index.d.ts(1799,9): error TS2300: Duplicate identifier 'getCipher'. typings/main/ambient/node/index.d.ts(1803,9): error TS2300: Duplicate identifier 'address'. typings/main/ambient/node/index.d.ts(1808,9): error TS2300: Duplicate identifier 'remoteAddress'. typings/main/ambient/node/index.d.ts(1809,9): error TS2300: Duplicate identifier 'remotePort'. typings/main/ambient/node/index.d.ts(1813,9): error TS2300: Duplicate identifier 'encrypted'. typings/main/ambient/node/index.d.ts(1814,9): error TS2300: Duplicate identifier 'cleartext'. typings/main/ambient/node/index.d.ts(1818,9): error TS2300: Duplicate identifier 'pfx'. typings/main/ambient/node/index.d.ts(1819,9): error TS2300: Duplicate identifier 'key'. typings/main/ambient/node/index.d.ts(1820,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/ambient/node/index.d.ts(1821,9): error TS2300: Duplicate identifier 'cert'. typings/main/ambient/node/index.d.ts(1822,9): error TS2300: Duplicate identifier 'ca'. typings/main/ambient/node/index.d.ts(1823,9): error TS2300: Duplicate identifier 'crl'. typings/main/ambient/node/index.d.ts(1824,9): error TS2300: Duplicate identifier 'ciphers'. typings/main/ambient/node/index.d.ts(1825,9): error TS2300: Duplicate identifier 'honorCipherOrder'. typings/main/ambient/node/index.d.ts(1829,9): error TS2300: Duplicate identifier 'context'. typings/main/ambient/node/index.d.ts(1842,9): error TS2300: Duplicate identifier 'pfx'. typings/main/ambient/node/index.d.ts(1843,9): error TS2300: Duplicate identifier 'key'. typings/main/ambient/node/index.d.ts(1844,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/ambient/node/index.d.ts(1845,9): error TS2300: Duplicate identifier 'cert'. typings/main/ambient/node/index.d.ts(1846,9): error TS2300: Duplicate identifier 'ca'. typings/main/ambient/node/index.d.ts(1847,9): error TS2300: Duplicate identifier 'crl'. typings/main/ambient/node/index.d.ts(1848,9): error TS2300: Duplicate identifier 'ciphers'. typings/main/ambient/node/index.d.ts(1850,36): error TS2300: Duplicate identifier 'context'. typings/main/ambient/node/index.d.ts(1923,9): error TS2300: Duplicate identifier 'key'. typings/main/ambient/node/index.d.ts(1924,9): error TS2300: Duplicate identifier 'padding'. typings/main/ambient/node/index.d.ts(1927,9): error TS2300: Duplicate identifier 'key'. typings/main/ambient/node/index.d.ts(1928,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/ambient/node/index.d.ts(1929,9): error TS2300: Duplicate identifier 'padding'. typings/main/ambient/node/index.d.ts(1938,18): error TS2300: Duplicate identifier 'Stream'. typings/main/ambient/node/index.d.ts(1943,9): error TS2300: Duplicate identifier 'highWaterMark'. typings/main/ambient/node/index.d.ts(1944,9): error TS2300: Duplicate identifier 'encoding'. typings/main/ambient/node/index.d.ts(1945,9): error TS2300: Duplicate identifier 'objectMode'. typings/main/ambient/node/index.d.ts(1948,18): error TS2300: Duplicate identifier 'Readable'. typings/main/ambient/node/index.d.ts(1964,9): error TS2300: Duplicate identifier 'highWaterMark'. typings/main/ambient/node/index.d.ts(1965,9): error TS2300: Duplicate identifier 'decodeStrings'. typings/main/ambient/node/index.d.ts(1966,9): error TS2300: Duplicate identifier 'objectMode'. typings/main/ambient/node/index.d.ts(1969,18): error TS2300: Duplicate identifier 'Writable'. typings/main/ambient/node/index.d.ts(1981,9): error TS2300: Duplicate identifier 'allowHalfOpen'. typings/main/ambient/node/index.d.ts(1985,18): error TS2300: Duplicate identifier 'Duplex'. typings/main/ambient/node/index.d.ts(1999,18): error TS2300: Duplicate identifier 'Transform'. typings/main/ambient/node/index.d.ts(2021,18): error TS2300: Duplicate identifier 'PassThrough'. typings/main/ambient/node/index.d.ts(2026,9): error TS2300: Duplicate identifier 'showHidden'. typings/main/ambient/node/index.d.ts(2027,9): error TS2300: Duplicate identifier 'depth'. typings/main/ambient/node/index.d.ts(2028,9): error TS2300: Duplicate identifier 'colors'. typings/main/ambient/node/index.d.ts(2029,9): error TS2300: Duplicate identifier 'customInspect'. typings/main/ambient/node/index.d.ts(2098,9): error TS2300: Duplicate identifier 'isRaw'. typings/main/ambient/node/index.d.ts(2100,9): error TS2300: Duplicate identifier 'isTTY'. typings/main/ambient/node/index.d.ts(2103,9): error TS2300: Duplicate identifier 'columns'. typings/main/ambient/node/index.d.ts(2104,9): error TS2300: Duplicate identifier 'rows'. typings/main/ambient/node/index.d.ts(2105,9): error TS2300: Duplicate identifier 'isTTY'. typings/main/ambient/node/index.d.ts(2112,18): error TS2300: Duplicate identifier 'Domain'. typings/main/definitions/node/index.d.ts(456,9): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(457,9): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(458,5): error TS2666: Exports and export assignments are not permitted in module augmentations. typings/main/definitions/node/index.d.ts(458,26): error TS2300: Duplicate identifier 'Buffer'. typings/main/definitions/node/index.d.ts(458,50): error TS2300: Duplicate identifier 'SlowBuffer'. typings/main/definitions/node/index.d.ts(463,9): error TS2300: Duplicate identifier 'encodeURIComponent'. typings/main/definitions/node/index.d.ts(467,9): error TS2300: Duplicate identifier 'maxKeys'. typings/main/definitions/node/index.d.ts(468,9): error TS2300: Duplicate identifier 'decodeURIComponent'. typings/main/definitions/node/index.d.ts(479,18): error TS2300: Duplicate identifier 'EventEmitter'. typings/main/definitions/node/index.d.ts(479,18): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(498,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(499,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(500,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(503,9): error TS2300: Duplicate identifier 'protocol'. typings/main/definitions/node/index.d.ts(504,9): error TS2300: Duplicate identifier 'host'. typings/main/definitions/node/index.d.ts(505,9): error TS2300: Duplicate identifier 'hostname'. typings/main/definitions/node/index.d.ts(506,9): error TS2300: Duplicate identifier 'family'. typings/main/definitions/node/index.d.ts(507,9): error TS2300: Duplicate identifier 'port'. typings/main/definitions/node/index.d.ts(508,9): error TS2300: Duplicate identifier 'localAddress'. typings/main/definitions/node/index.d.ts(509,9): error TS2300: Duplicate identifier 'socketPath'. typings/main/definitions/node/index.d.ts(510,9): error TS2300: Duplicate identifier 'method'. typings/main/definitions/node/index.d.ts(511,9): error TS2300: Duplicate identifier 'path'. typings/main/definitions/node/index.d.ts(512,9): error TS2300: Duplicate identifier 'headers'. typings/main/definitions/node/index.d.ts(513,9): error TS2300: Duplicate identifier 'auth'. typings/main/definitions/node/index.d.ts(514,9): error TS2300: Duplicate identifier 'agent'. typings/main/definitions/node/index.d.ts(519,9): error TS2300: Duplicate identifier 'maxHeadersCount'. typings/main/definitions/node/index.d.ts(520,9): error TS2300: Duplicate identifier 'timeout'. typings/main/definitions/node/index.d.ts(526,9): error TS2300: Duplicate identifier 'connection'. typings/main/definitions/node/index.d.ts(539,9): error TS2300: Duplicate identifier 'statusCode'. typings/main/definitions/node/index.d.ts(540,9): error TS2300: Duplicate identifier 'statusMessage'. typings/main/definitions/node/index.d.ts(541,9): error TS2300: Duplicate identifier 'headersSent'. typings/main/definitions/node/index.d.ts(543,9): error TS2300: Duplicate identifier 'sendDate'. typings/main/definitions/node/index.d.ts(583,9): error TS2300: Duplicate identifier 'httpVersion'. typings/main/definitions/node/index.d.ts(584,9): error TS2300: Duplicate identifier 'headers'. typings/main/definitions/node/index.d.ts(585,9): error TS2300: Duplicate identifier 'rawHeaders'. typings/main/definitions/node/index.d.ts(586,9): error TS2300: Duplicate identifier 'trailers'. typings/main/definitions/node/index.d.ts(587,9): error TS2300: Duplicate identifier 'rawTrailers'. typings/main/definitions/node/index.d.ts(592,9): error TS2300: Duplicate identifier 'method'. typings/main/definitions/node/index.d.ts(596,9): error TS2300: Duplicate identifier 'url'. typings/main/definitions/node/index.d.ts(600,9): error TS2300: Duplicate identifier 'statusCode'. typings/main/definitions/node/index.d.ts(604,9): error TS2300: Duplicate identifier 'statusMessage'. typings/main/definitions/node/index.d.ts(605,9): error TS2300: Duplicate identifier 'socket'. typings/main/definitions/node/index.d.ts(616,9): error TS2300: Duplicate identifier 'keepAlive'. typings/main/definitions/node/index.d.ts(621,9): error TS2300: Duplicate identifier 'keepAliveMsecs'. typings/main/definitions/node/index.d.ts(625,9): error TS2300: Duplicate identifier 'maxSockets'. typings/main/definitions/node/index.d.ts(629,9): error TS2300: Duplicate identifier 'maxFreeSockets'. typings/main/definitions/node/index.d.ts(632,18): error TS2300: Duplicate identifier 'Agent'. typings/main/definitions/node/index.d.ts(632,18): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(662,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(663,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(666,9): error TS2300: Duplicate identifier 'exec'. typings/main/definitions/node/index.d.ts(667,9): error TS2300: Duplicate identifier 'args'. typings/main/definitions/node/index.d.ts(668,9): error TS2300: Duplicate identifier 'silent'. typings/main/definitions/node/index.d.ts(672,9): error TS2300: Duplicate identifier 'address'. typings/main/definitions/node/index.d.ts(673,9): error TS2300: Duplicate identifier 'port'. typings/main/definitions/node/index.d.ts(674,9): error TS2300: Duplicate identifier 'addressType'. typings/main/definitions/node/index.d.ts(677,18): error TS2300: Duplicate identifier 'Worker'. typings/main/definitions/node/index.d.ts(677,18): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(719,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(720,36): error TS2300: Duplicate identifier 'chunkSize'. typings/main/definitions/node/index.d.ts(720,56): error TS2300: Duplicate identifier 'windowBits'. typings/main/definitions/node/index.d.ts(720,77): error TS2300: Duplicate identifier 'level'. typings/main/definitions/node/index.d.ts(720,93): error TS2300: Duplicate identifier 'memLevel'. typings/main/definitions/node/index.d.ts(720,112): error TS2300: Duplicate identifier 'strategy'. typings/main/definitions/node/index.d.ts(720,131): error TS2300: Duplicate identifier 'dictionary'. typings/main/definitions/node/index.d.ts(789,9): error TS2300: Duplicate identifier 'model'. typings/main/definitions/node/index.d.ts(790,9): error TS2300: Duplicate identifier 'speed'. typings/main/definitions/node/index.d.ts(791,9): error TS2300: Duplicate identifier 'times'. typings/main/definitions/node/index.d.ts(801,9): error TS2300: Duplicate identifier 'address'. typings/main/definitions/node/index.d.ts(802,9): error TS2300: Duplicate identifier 'netmask'. typings/main/definitions/node/index.d.ts(803,9): error TS2300: Duplicate identifier 'family'. typings/main/definitions/node/index.d.ts(804,9): error TS2300: Duplicate identifier 'mac'. typings/main/definitions/node/index.d.ts(805,9): error TS2300: Duplicate identifier 'internal'. typings/main/definitions/node/index.d.ts(826,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(827,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(828,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(831,9): error TS2300: Duplicate identifier 'pfx'. typings/main/definitions/node/index.d.ts(832,9): error TS2300: Duplicate identifier 'key'. typings/main/definitions/node/index.d.ts(833,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/definitions/node/index.d.ts(834,9): error TS2300: Duplicate identifier 'cert'. typings/main/definitions/node/index.d.ts(835,9): error TS2300: Duplicate identifier 'ca'. typings/main/definitions/node/index.d.ts(836,9): error TS2300: Duplicate identifier 'crl'. typings/main/definitions/node/index.d.ts(837,9): error TS2300: Duplicate identifier 'ciphers'. typings/main/definitions/node/index.d.ts(838,9): error TS2300: Duplicate identifier 'honorCipherOrder'. typings/main/definitions/node/index.d.ts(839,9): error TS2300: Duplicate identifier 'requestCert'. typings/main/definitions/node/index.d.ts(840,9): error TS2300: Duplicate identifier 'rejectUnauthorized'. typings/main/definitions/node/index.d.ts(841,9): error TS2300: Duplicate identifier 'NPNProtocols'. typings/main/definitions/node/index.d.ts(842,9): error TS2300: Duplicate identifier 'SNICallback'. typings/main/definitions/node/index.d.ts(846,9): error TS2300: Duplicate identifier 'pfx'. typings/main/definitions/node/index.d.ts(847,9): error TS2300: Duplicate identifier 'key'. typings/main/definitions/node/index.d.ts(848,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/definitions/node/index.d.ts(849,9): error TS2300: Duplicate identifier 'cert'. typings/main/definitions/node/index.d.ts(850,9): error TS2300: Duplicate identifier 'ca'. typings/main/definitions/node/index.d.ts(851,9): error TS2300: Duplicate identifier 'ciphers'. typings/main/definitions/node/index.d.ts(852,9): error TS2300: Duplicate identifier 'rejectUnauthorized'. typings/main/definitions/node/index.d.ts(853,9): error TS2300: Duplicate identifier 'secureProtocol'. typings/main/definitions/node/index.d.ts(857,9): error TS2300: Duplicate identifier 'maxSockets'. typings/main/definitions/node/index.d.ts(858,9): error TS2300: Duplicate identifier 'sockets'. typings/main/definitions/node/index.d.ts(859,9): error TS2300: Duplicate identifier 'requests'. typings/main/definitions/node/index.d.ts(885,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(886,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(889,9): error TS2300: Duplicate identifier 'prompt'. typings/main/definitions/node/index.d.ts(890,9): error TS2300: Duplicate identifier 'input'. typings/main/definitions/node/index.d.ts(891,9): error TS2300: Duplicate identifier 'output'. typings/main/definitions/node/index.d.ts(892,9): error TS2300: Duplicate identifier 'terminal'. typings/main/definitions/node/index.d.ts(893,9): error TS2300: Duplicate identifier 'eval'. typings/main/definitions/node/index.d.ts(894,9): error TS2300: Duplicate identifier 'useColors'. typings/main/definitions/node/index.d.ts(895,9): error TS2300: Duplicate identifier 'useGlobal'. typings/main/definitions/node/index.d.ts(896,9): error TS2300: Duplicate identifier 'ignoreUndefined'. typings/main/definitions/node/index.d.ts(897,9): error TS2300: Duplicate identifier 'writer'. typings/main/definitions/node/index.d.ts(903,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(904,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(907,9): error TS2300: Duplicate identifier 'sequence'. typings/main/definitions/node/index.d.ts(908,9): error TS2300: Duplicate identifier 'name'. typings/main/definitions/node/index.d.ts(909,9): error TS2300: Duplicate identifier 'ctrl'. typings/main/definitions/node/index.d.ts(910,9): error TS2300: Duplicate identifier 'meta'. typings/main/definitions/node/index.d.ts(911,9): error TS2300: Duplicate identifier 'shift'. typings/main/definitions/node/index.d.ts(930,9): error TS2300: Duplicate identifier 'completions'. typings/main/definitions/node/index.d.ts(931,9): error TS2300: Duplicate identifier 'line'. typings/main/definitions/node/index.d.ts(935,9): error TS2300: Duplicate identifier 'input'. typings/main/definitions/node/index.d.ts(936,9): error TS2300: Duplicate identifier 'output'. typings/main/definitions/node/index.d.ts(937,9): error TS2300: Duplicate identifier 'completer'. typings/main/definitions/node/index.d.ts(938,9): error TS2300: Duplicate identifier 'terminal'. typings/main/definitions/node/index.d.ts(939,9): error TS2300: Duplicate identifier 'historySize'. typings/main/definitions/node/index.d.ts(954,9): error TS2300: Duplicate identifier 'filename'. typings/main/definitions/node/index.d.ts(955,9): error TS2300: Duplicate identifier 'lineOffset'. typings/main/definitions/node/index.d.ts(956,9): error TS2300: Duplicate identifier 'columnOffset'. typings/main/definitions/node/index.d.ts(957,9): error TS2300: Duplicate identifier 'displayErrors'. typings/main/definitions/node/index.d.ts(958,9): error TS2300: Duplicate identifier 'timeout'. typings/main/definitions/node/index.d.ts(959,9): error TS2300: Duplicate identifier 'cachedData'. typings/main/definitions/node/index.d.ts(960,9): error TS2300: Duplicate identifier 'produceCachedData'. typings/main/definitions/node/index.d.ts(963,9): error TS2300: Duplicate identifier 'filename'. typings/main/definitions/node/index.d.ts(964,9): error TS2300: Duplicate identifier 'lineOffset'. typings/main/definitions/node/index.d.ts(965,9): error TS2300: Duplicate identifier 'columnOffset'. typings/main/definitions/node/index.d.ts(966,9): error TS2300: Duplicate identifier 'displayErrors'. typings/main/definitions/node/index.d.ts(967,9): error TS2300: Duplicate identifier 'timeout'. typings/main/definitions/node/index.d.ts(969,18): error TS2300: Duplicate identifier 'Script'. typings/main/definitions/node/index.d.ts(969,18): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(984,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(985,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(988,9): error TS2300: Duplicate identifier 'stdin'. typings/main/definitions/node/index.d.ts(989,9): error TS2300: Duplicate identifier 'stdout'. typings/main/definitions/node/index.d.ts(990,9): error TS2300: Duplicate identifier 'stderr'. typings/main/definitions/node/index.d.ts(991,9): error TS2300: Duplicate identifier 'stdio'. typings/main/definitions/node/index.d.ts(992,9): error TS2300: Duplicate identifier 'pid'. typings/main/definitions/node/index.d.ts(1000,9): error TS2300: Duplicate identifier 'cwd'. typings/main/definitions/node/index.d.ts(1001,9): error TS2300: Duplicate identifier 'env'. typings/main/definitions/node/index.d.ts(1002,9): error TS2300: Duplicate identifier 'stdio'. typings/main/definitions/node/index.d.ts(1003,9): error TS2300: Duplicate identifier 'detached'. typings/main/definitions/node/index.d.ts(1004,9): error TS2300: Duplicate identifier 'uid'. typings/main/definitions/node/index.d.ts(1005,9): error TS2300: Duplicate identifier 'gid'. typings/main/definitions/node/index.d.ts(1006,9): error TS2300: Duplicate identifier 'shell'. typings/main/definitions/node/index.d.ts(1011,9): error TS2300: Duplicate identifier 'cwd'. typings/main/definitions/node/index.d.ts(1012,9): error TS2300: Duplicate identifier 'env'. typings/main/definitions/node/index.d.ts(1013,9): error TS2300: Duplicate identifier 'shell'. typings/main/definitions/node/index.d.ts(1014,9): error TS2300: Duplicate identifier 'timeout'. typings/main/definitions/node/index.d.ts(1015,9): error TS2300: Duplicate identifier 'maxBuffer'. typings/main/definitions/node/index.d.ts(1016,9): error TS2300: Duplicate identifier 'killSignal'. typings/main/definitions/node/index.d.ts(1017,9): error TS2300: Duplicate identifier 'uid'. typings/main/definitions/node/index.d.ts(1018,9): error TS2300: Duplicate identifier 'gid'. typings/main/definitions/node/index.d.ts(1021,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1024,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1033,9): error TS2300: Duplicate identifier 'cwd'. typings/main/definitions/node/index.d.ts(1034,9): error TS2300: Duplicate identifier 'env'. typings/main/definitions/node/index.d.ts(1035,9): error TS2300: Duplicate identifier 'timeout'. typings/main/definitions/node/index.d.ts(1036,9): error TS2300: Duplicate identifier 'maxBuffer'. typings/main/definitions/node/index.d.ts(1037,9): error TS2300: Duplicate identifier 'killSignal'. typings/main/definitions/node/index.d.ts(1038,9): error TS2300: Duplicate identifier 'uid'. typings/main/definitions/node/index.d.ts(1039,9): error TS2300: Duplicate identifier 'gid'. typings/main/definitions/node/index.d.ts(1042,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1045,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1059,9): error TS2300: Duplicate identifier 'cwd'. typings/main/definitions/node/index.d.ts(1060,9): error TS2300: Duplicate identifier 'env'. typings/main/definitions/node/index.d.ts(1061,9): error TS2300: Duplicate identifier 'execPath'. typings/main/definitions/node/index.d.ts(1062,9): error TS2300: Duplicate identifier 'execArgv'. typings/main/definitions/node/index.d.ts(1063,9): error TS2300: Duplicate identifier 'silent'. typings/main/definitions/node/index.d.ts(1064,9): error TS2300: Duplicate identifier 'uid'. typings/main/definitions/node/index.d.ts(1065,9): error TS2300: Duplicate identifier 'gid'. typings/main/definitions/node/index.d.ts(1070,9): error TS2300: Duplicate identifier 'cwd'. typings/main/definitions/node/index.d.ts(1071,9): error TS2300: Duplicate identifier 'input'. typings/main/definitions/node/index.d.ts(1072,9): error TS2300: Duplicate identifier 'stdio'. typings/main/definitions/node/index.d.ts(1073,9): error TS2300: Duplicate identifier 'env'. typings/main/definitions/node/index.d.ts(1074,9): error TS2300: Duplicate identifier 'uid'. typings/main/definitions/node/index.d.ts(1075,9): error TS2300: Duplicate identifier 'gid'. typings/main/definitions/node/index.d.ts(1076,9): error TS2300: Duplicate identifier 'timeout'. typings/main/definitions/node/index.d.ts(1077,9): error TS2300: Duplicate identifier 'killSignal'. typings/main/definitions/node/index.d.ts(1078,9): error TS2300: Duplicate identifier 'maxBuffer'. typings/main/definitions/node/index.d.ts(1079,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1080,9): error TS2300: Duplicate identifier 'shell'. typings/main/definitions/node/index.d.ts(1083,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1086,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1089,9): error TS2300: Duplicate identifier 'pid'. typings/main/definitions/node/index.d.ts(1090,9): error TS2300: Duplicate identifier 'output'. typings/main/definitions/node/index.d.ts(1091,9): error TS2300: Duplicate identifier 'stdout'. typings/main/definitions/node/index.d.ts(1092,9): error TS2300: Duplicate identifier 'stderr'. typings/main/definitions/node/index.d.ts(1093,9): error TS2300: Duplicate identifier 'status'. typings/main/definitions/node/index.d.ts(1094,9): error TS2300: Duplicate identifier 'signal'. typings/main/definitions/node/index.d.ts(1095,9): error TS2300: Duplicate identifier 'error'. typings/main/definitions/node/index.d.ts(1106,9): error TS2300: Duplicate identifier 'cwd'. typings/main/definitions/node/index.d.ts(1107,9): error TS2300: Duplicate identifier 'input'. typings/main/definitions/node/index.d.ts(1108,9): error TS2300: Duplicate identifier 'stdio'. typings/main/definitions/node/index.d.ts(1109,9): error TS2300: Duplicate identifier 'env'. typings/main/definitions/node/index.d.ts(1110,9): error TS2300: Duplicate identifier 'shell'. typings/main/definitions/node/index.d.ts(1111,9): error TS2300: Duplicate identifier 'uid'. typings/main/definitions/node/index.d.ts(1112,9): error TS2300: Duplicate identifier 'gid'. typings/main/definitions/node/index.d.ts(1113,9): error TS2300: Duplicate identifier 'timeout'. typings/main/definitions/node/index.d.ts(1114,9): error TS2300: Duplicate identifier 'killSignal'. typings/main/definitions/node/index.d.ts(1115,9): error TS2300: Duplicate identifier 'maxBuffer'. typings/main/definitions/node/index.d.ts(1116,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1119,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1122,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1130,9): error TS2300: Duplicate identifier 'cwd'. typings/main/definitions/node/index.d.ts(1131,9): error TS2300: Duplicate identifier 'input'. typings/main/definitions/node/index.d.ts(1132,9): error TS2300: Duplicate identifier 'stdio'. typings/main/definitions/node/index.d.ts(1133,9): error TS2300: Duplicate identifier 'env'. typings/main/definitions/node/index.d.ts(1134,9): error TS2300: Duplicate identifier 'uid'. typings/main/definitions/node/index.d.ts(1135,9): error TS2300: Duplicate identifier 'gid'. typings/main/definitions/node/index.d.ts(1136,9): error TS2300: Duplicate identifier 'timeout'. typings/main/definitions/node/index.d.ts(1137,9): error TS2300: Duplicate identifier 'killSignal'. typings/main/definitions/node/index.d.ts(1138,9): error TS2300: Duplicate identifier 'maxBuffer'. typings/main/definitions/node/index.d.ts(1139,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1142,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1145,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1158,9): error TS2300: Duplicate identifier 'href'. typings/main/definitions/node/index.d.ts(1159,9): error TS2300: Duplicate identifier 'protocol'. typings/main/definitions/node/index.d.ts(1160,9): error TS2300: Duplicate identifier 'auth'. typings/main/definitions/node/index.d.ts(1161,9): error TS2300: Duplicate identifier 'hostname'. typings/main/definitions/node/index.d.ts(1162,9): error TS2300: Duplicate identifier 'port'. typings/main/definitions/node/index.d.ts(1163,9): error TS2300: Duplicate identifier 'host'. typings/main/definitions/node/index.d.ts(1164,9): error TS2300: Duplicate identifier 'pathname'. typings/main/definitions/node/index.d.ts(1165,9): error TS2300: Duplicate identifier 'search'. typings/main/definitions/node/index.d.ts(1166,9): error TS2300: Duplicate identifier 'query'. typings/main/definitions/node/index.d.ts(1167,9): error TS2300: Duplicate identifier 'slashes'. typings/main/definitions/node/index.d.ts(1168,9): error TS2300: Duplicate identifier 'hash'. typings/main/definitions/node/index.d.ts(1169,9): error TS2300: Duplicate identifier 'path'. typings/main/definitions/node/index.d.ts(1193,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(1205,9): error TS2300: Duplicate identifier 'bufferSize'. typings/main/definitions/node/index.d.ts(1218,9): error TS2300: Duplicate identifier 'remoteAddress'. typings/main/definitions/node/index.d.ts(1219,9): error TS2300: Duplicate identifier 'remoteFamily'. typings/main/definitions/node/index.d.ts(1220,9): error TS2300: Duplicate identifier 'remotePort'. typings/main/definitions/node/index.d.ts(1221,9): error TS2300: Duplicate identifier 'localAddress'. typings/main/definitions/node/index.d.ts(1222,9): error TS2300: Duplicate identifier 'localPort'. typings/main/definitions/node/index.d.ts(1223,9): error TS2300: Duplicate identifier 'bytesRead'. typings/main/definitions/node/index.d.ts(1224,9): error TS2300: Duplicate identifier 'bytesWritten'. typings/main/definitions/node/index.d.ts(1239,9): error TS2300: Duplicate identifier 'port'. typings/main/definitions/node/index.d.ts(1240,9): error TS2300: Duplicate identifier 'host'. typings/main/definitions/node/index.d.ts(1241,9): error TS2300: Duplicate identifier 'backlog'. typings/main/definitions/node/index.d.ts(1242,9): error TS2300: Duplicate identifier 'path'. typings/main/definitions/node/index.d.ts(1243,9): error TS2300: Duplicate identifier 'exclusive'. typings/main/definitions/node/index.d.ts(1261,9): error TS2300: Duplicate identifier 'maxConnections'. typings/main/definitions/node/index.d.ts(1262,9): error TS2300: Duplicate identifier 'connections'. typings/main/definitions/node/index.d.ts(1278,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(1281,9): error TS2300: Duplicate identifier 'address'. typings/main/definitions/node/index.d.ts(1282,9): error TS2300: Duplicate identifier 'port'. typings/main/definitions/node/index.d.ts(1283,9): error TS2300: Duplicate identifier 'size'. typings/main/definitions/node/index.d.ts(1287,9): error TS2300: Duplicate identifier 'address'. typings/main/definitions/node/index.d.ts(1288,9): error TS2300: Duplicate identifier 'family'. typings/main/definitions/node/index.d.ts(1289,9): error TS2300: Duplicate identifier 'port'. typings/main/definitions/node/index.d.ts(1308,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(1309,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(1319,9): error TS2300: Duplicate identifier 'dev'. typings/main/definitions/node/index.d.ts(1320,9): error TS2300: Duplicate identifier 'ino'. typings/main/definitions/node/index.d.ts(1321,9): error TS2300: Duplicate identifier 'mode'. typings/main/definitions/node/index.d.ts(1322,9): error TS2300: Duplicate identifier 'nlink'. typings/main/definitions/node/index.d.ts(1323,9): error TS2300: Duplicate identifier 'uid'. typings/main/definitions/node/index.d.ts(1324,9): error TS2300: Duplicate identifier 'gid'. typings/main/definitions/node/index.d.ts(1325,9): error TS2300: Duplicate identifier 'rdev'. typings/main/definitions/node/index.d.ts(1326,9): error TS2300: Duplicate identifier 'size'. typings/main/definitions/node/index.d.ts(1327,9): error TS2300: Duplicate identifier 'blksize'. typings/main/definitions/node/index.d.ts(1328,9): error TS2300: Duplicate identifier 'blocks'. typings/main/definitions/node/index.d.ts(1329,9): error TS2300: Duplicate identifier 'atime'. typings/main/definitions/node/index.d.ts(1330,9): error TS2300: Duplicate identifier 'mtime'. typings/main/definitions/node/index.d.ts(1331,9): error TS2300: Duplicate identifier 'ctime'. typings/main/definitions/node/index.d.ts(1332,9): error TS2300: Duplicate identifier 'birthtime'. typings/main/definitions/node/index.d.ts(1344,9): error TS2300: Duplicate identifier 'bytesWritten'. typings/main/definitions/node/index.d.ts(1598,9): error TS2300: Duplicate identifier 'root'. typings/main/definitions/node/index.d.ts(1602,9): error TS2300: Duplicate identifier 'dir'. typings/main/definitions/node/index.d.ts(1606,9): error TS2300: Duplicate identifier 'base'. typings/main/definitions/node/index.d.ts(1610,9): error TS2300: Duplicate identifier 'ext'. typings/main/definitions/node/index.d.ts(1614,9): error TS2300: Duplicate identifier 'name'. typings/main/definitions/node/index.d.ts(1746,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(1747,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(1748,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(1754,9): error TS2300: Duplicate identifier 'host'. typings/main/definitions/node/index.d.ts(1755,9): error TS2300: Duplicate identifier 'port'. typings/main/definitions/node/index.d.ts(1756,9): error TS2300: Duplicate identifier 'pfx'. typings/main/definitions/node/index.d.ts(1757,9): error TS2300: Duplicate identifier 'key'. typings/main/definitions/node/index.d.ts(1758,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/definitions/node/index.d.ts(1759,9): error TS2300: Duplicate identifier 'cert'. typings/main/definitions/node/index.d.ts(1760,9): error TS2300: Duplicate identifier 'ca'. typings/main/definitions/node/index.d.ts(1761,9): error TS2300: Duplicate identifier 'crl'. typings/main/definitions/node/index.d.ts(1762,9): error TS2300: Duplicate identifier 'ciphers'. typings/main/definitions/node/index.d.ts(1763,9): error TS2300: Duplicate identifier 'honorCipherOrder'. typings/main/definitions/node/index.d.ts(1764,9): error TS2300: Duplicate identifier 'requestCert'. typings/main/definitions/node/index.d.ts(1765,9): error TS2300: Duplicate identifier 'rejectUnauthorized'. typings/main/definitions/node/index.d.ts(1766,9): error TS2300: Duplicate identifier 'NPNProtocols'. typings/main/definitions/node/index.d.ts(1767,9): error TS2300: Duplicate identifier 'SNICallback'. typings/main/definitions/node/index.d.ts(1771,9): error TS2300: Duplicate identifier 'host'. typings/main/definitions/node/index.d.ts(1772,9): error TS2300: Duplicate identifier 'port'. typings/main/definitions/node/index.d.ts(1773,9): error TS2300: Duplicate identifier 'socket'. typings/main/definitions/node/index.d.ts(1774,9): error TS2300: Duplicate identifier 'pfx'. typings/main/definitions/node/index.d.ts(1775,9): error TS2300: Duplicate identifier 'key'. typings/main/definitions/node/index.d.ts(1776,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/definitions/node/index.d.ts(1777,9): error TS2300: Duplicate identifier 'cert'. typings/main/definitions/node/index.d.ts(1778,9): error TS2300: Duplicate identifier 'ca'. typings/main/definitions/node/index.d.ts(1779,9): error TS2300: Duplicate identifier 'rejectUnauthorized'. typings/main/definitions/node/index.d.ts(1780,9): error TS2300: Duplicate identifier 'NPNProtocols'. typings/main/definitions/node/index.d.ts(1781,9): error TS2300: Duplicate identifier 'servername'. typings/main/definitions/node/index.d.ts(1792,9): error TS2300: Duplicate identifier 'maxConnections'. typings/main/definitions/node/index.d.ts(1793,9): error TS2300: Duplicate identifier 'connections'. typings/main/definitions/node/index.d.ts(1797,9): error TS2300: Duplicate identifier 'authorized'. typings/main/definitions/node/index.d.ts(1798,9): error TS2300: Duplicate identifier 'authorizationError'. typings/main/definitions/node/index.d.ts(1800,9): error TS2300: Duplicate identifier 'getCipher'. typings/main/definitions/node/index.d.ts(1804,9): error TS2300: Duplicate identifier 'address'. typings/main/definitions/node/index.d.ts(1809,9): error TS2300: Duplicate identifier 'remoteAddress'. typings/main/definitions/node/index.d.ts(1810,9): error TS2300: Duplicate identifier 'remotePort'. typings/main/definitions/node/index.d.ts(1814,9): error TS2300: Duplicate identifier 'encrypted'. typings/main/definitions/node/index.d.ts(1815,9): error TS2300: Duplicate identifier 'cleartext'. typings/main/definitions/node/index.d.ts(1819,9): error TS2300: Duplicate identifier 'pfx'. typings/main/definitions/node/index.d.ts(1820,9): error TS2300: Duplicate identifier 'key'. typings/main/definitions/node/index.d.ts(1821,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/definitions/node/index.d.ts(1822,9): error TS2300: Duplicate identifier 'cert'. typings/main/definitions/node/index.d.ts(1823,9): error TS2300: Duplicate identifier 'ca'. typings/main/definitions/node/index.d.ts(1824,9): error TS2300: Duplicate identifier 'crl'. typings/main/definitions/node/index.d.ts(1825,9): error TS2300: Duplicate identifier 'ciphers'. typings/main/definitions/node/index.d.ts(1826,9): error TS2300: Duplicate identifier 'honorCipherOrder'. typings/main/definitions/node/index.d.ts(1830,9): error TS2300: Duplicate identifier 'context'. typings/main/definitions/node/index.d.ts(1843,9): error TS2300: Duplicate identifier 'pfx'. typings/main/definitions/node/index.d.ts(1844,9): error TS2300: Duplicate identifier 'key'. typings/main/definitions/node/index.d.ts(1845,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/definitions/node/index.d.ts(1846,9): error TS2300: Duplicate identifier 'cert'. typings/main/definitions/node/index.d.ts(1847,9): error TS2300: Duplicate identifier 'ca'. typings/main/definitions/node/index.d.ts(1848,9): error TS2300: Duplicate identifier 'crl'. typings/main/definitions/node/index.d.ts(1849,9): error TS2300: Duplicate identifier 'ciphers'. typings/main/definitions/node/index.d.ts(1851,36): error TS2300: Duplicate identifier 'context'. typings/main/definitions/node/index.d.ts(1924,9): error TS2300: Duplicate identifier 'key'. typings/main/definitions/node/index.d.ts(1925,9): error TS2300: Duplicate identifier 'padding'. typings/main/definitions/node/index.d.ts(1928,9): error TS2300: Duplicate identifier 'key'. typings/main/definitions/node/index.d.ts(1929,9): error TS2300: Duplicate identifier 'passphrase'. typings/main/definitions/node/index.d.ts(1930,9): error TS2300: Duplicate identifier 'padding'. typings/main/definitions/node/index.d.ts(1937,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(1939,18): error TS2300: Duplicate identifier 'Stream'. typings/main/definitions/node/index.d.ts(1939,18): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(1944,9): error TS2300: Duplicate identifier 'highWaterMark'. typings/main/definitions/node/index.d.ts(1945,9): error TS2300: Duplicate identifier 'encoding'. typings/main/definitions/node/index.d.ts(1946,9): error TS2300: Duplicate identifier 'objectMode'. typings/main/definitions/node/index.d.ts(1949,18): error TS2300: Duplicate identifier 'Readable'. typings/main/definitions/node/index.d.ts(1949,18): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(1965,9): error TS2300: Duplicate identifier 'highWaterMark'. typings/main/definitions/node/index.d.ts(1966,9): error TS2300: Duplicate identifier 'decodeStrings'. typings/main/definitions/node/index.d.ts(1967,9): error TS2300: Duplicate identifier 'objectMode'. typings/main/definitions/node/index.d.ts(1970,18): error TS2300: Duplicate identifier 'Writable'. typings/main/definitions/node/index.d.ts(1970,18): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(1982,9): error TS2300: Duplicate identifier 'allowHalfOpen'. typings/main/definitions/node/index.d.ts(1986,18): error TS2300: Duplicate identifier 'Duplex'. typings/main/definitions/node/index.d.ts(1986,18): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(2000,18): error TS2300: Duplicate identifier 'Transform'. typings/main/definitions/node/index.d.ts(2000,18): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(2022,18): error TS2300: Duplicate identifier 'PassThrough'. typings/main/definitions/node/index.d.ts(2022,18): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(2027,9): error TS2300: Duplicate identifier 'showHidden'. typings/main/definitions/node/index.d.ts(2028,9): error TS2300: Duplicate identifier 'depth'. typings/main/definitions/node/index.d.ts(2029,9): error TS2300: Duplicate identifier 'colors'. typings/main/definitions/node/index.d.ts(2030,9): error TS2300: Duplicate identifier 'customInspect'. typings/main/definitions/node/index.d.ts(2050,14): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(2051,15): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/node/index.d.ts(2091,5): error TS2666: Exports and export assignments are not permitted in module augmentations. typings/main/definitions/node/index.d.ts(2095,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(2099,9): error TS2300: Duplicate identifier 'isRaw'. typings/main/definitions/node/index.d.ts(2101,9): error TS2300: Duplicate identifier 'isTTY'. typings/main/definitions/node/index.d.ts(2104,9): error TS2300: Duplicate identifier 'columns'. typings/main/definitions/node/index.d.ts(2105,9): error TS2300: Duplicate identifier 'rows'. typings/main/definitions/node/index.d.ts(2106,9): error TS2300: Duplicate identifier 'isTTY'. typings/main/definitions/node/index.d.ts(2111,5): error TS2667: Imports are not permitted in module augmentations. Consider moving them to the enclosing external module. typings/main/definitions/node/index.d.ts(2113,18): error TS2300: Duplicate identifier 'Domain'. typings/main/definitions/node/index.d.ts(2113,18): error TS2665: Module augmentation cannot introduce new names in the top level scope. typings/main/definitions/require/index.d.ts(35,8): error TS2664: Invalid module name in augmentation, module 'module' cannot be found.