Mendix SDK Running First Script
0
Hi all,I'm working through the documentation of the Mendix SDK and I'm trying to run my first script (see Create Your First Script | Mendix Documentation). I get the following stack trace:PS C:\Users\NicoMouton\Mendix\Mendix SDK\my-app-generator> npm run start > my-app-generator@1.0.0 start > tsc && node script.js node_modules/@types/node/http.d.ts:241:47 - error TS1005: ',' expected. 241 Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse, ~ node_modules/@types/node/http.d.ts:241:71 - error TS1109: Expression expected. 241 Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse, ~ node_modules/@types/node/http.d.ts:242:5 - error TS1109: Expression expected. 242 > { ~ node_modules/@types/node/http.d.ts:246:46 - error TS1005: ',' expected. 246 IncomingMessage?: Request | undefined; ~ node_modules/@types/node/http.d.ts:250:46 - error TS1005: ',' expected. 250 ServerResponse?: Response | undefined; ~ node_modules/@types/node/http.d.ts:257:44 - error TS1005: ',' expected. 257 requestTimeout?: number | undefined; ~ node_modules/@types/node/http.d.ts:263:51 - error TS1005: ',' expected. 263 joinDuplicateHeaders?: boolean | undefined; ~ node_modules/@types/node/http.d.ts:271:46 - error TS1005: ',' expected. 271 keepAliveTimeout?: number | undefined; ~ node_modules/@types/node/http.d.ts:278:52 - error TS1005: ',' expected. 278 keepAliveTimeoutBuffer?: number | undefined; ~ node_modules/@types/node/http.d.ts:283:57 - error TS1005: ',' expected. 283 connectionsCheckingInterval?: number | undefined; ~ node_modules/@types/node/http.d.ts:290:44 - error TS1005: ',' expected. 290 headersTimeout?: number | undefined; ~ node_modules/@types/node/http.d.ts:297:43 - error TS1005: ',' expected. 297 highWaterMark?: number | undefined; ~ node_modules/@types/node/http.d.ts:304:49 - error TS1005: ',' expected. 304 insecureHTTPParser?: boolean | undefined; ~ node_modules/@types/node/http.d.ts:311:43 - error TS1005: ',' expected. 311 maxHeaderSize?: number | undefined; ~ node_modules/@types/node/http.d.ts:317:38 - error TS1005: ',' expected. 317 noDelay?: boolean | undefined; ~ node_modules/@types/node/http.d.ts:324:48 - error TS1005: ',' expected. 324 requireHostHeader?: boolean | undefined; ~ node_modules/@types/node/http.d.ts:331:40 - error TS1005: ',' expected. 331 keepAlive?: boolean | undefined; ~ node_modules/@types/node/http.d.ts:337:51 - error TS1005: ',' expected. 337 keepAliveInitialDelay?: number | undefined; ~ node_modules/@types/node/http.d.ts:342:50 - error TS1005: '(' expected. 342 uniqueHeaders?: Array<string | string[]> | undefined; ~ node_modules/@types/node/http.d.ts:342:61 - error TS1005: ')' expected. 342 uniqueHeaders?: Array<string | string[]> | undefined; ~ node_modules/@types/node/http.d.ts:348:58 - error TS1005: ',' expected. 348 rejectNonStandardBodyWrites?: boolean | undefined; ~ node_modules/@types/node/http.d.ts:352:47 - error TS1005: ',' expected. 352 Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse, ~ node_modules/@types/node/http.d.ts:352:60 - error TS1005: ',' expected. 352 Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse, ~ node_modules/@types/node/http.d.ts:352:69 - error TS1005: '(' expected. 352 Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse, ~ node_modules/@types/node/http.d.ts:352:71 - error TS1109: Expression expected. 352 Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse, ~ node_modules/@types/node/http.d.ts:353:5 - error TS1109: Expression expected. 353 > = (req: InstanceType<Request>, res: InstanceType<Response> & { req: InstanceType<Request> }) => void; ~ node_modules/@types/node/http.d.ts:353:7 - error TS1109: Expression expected. 353 > = (req: InstanceType<Request>, res: InstanceType<Response> & { req: InstanceType<Request> }) => void; ~ node_modules/@types/node/http.d.ts:353:107 - error TS1109: Expression expected. 353 > = (req: InstanceType<Request>, res: InstanceType<Response> & { req: InstanceType<Request> }) => void; ~ node_modules/@types/node/http.d.ts:359:47 - error TS1005: ',' expected. 359 Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse, ~ node_modules/@types/node/http.d.ts:359:71 - error TS1109: Expression expected. 359 Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse, ~ node_modules/@types/node/http.d.ts:360:5 - error TS1109: Expression expected. 360 > extends NetServer { ~ node_modules/@types/node/http.d.ts:360:7 - error TS1109: Expression expected. 360 > extends NetServer { ~~~~~~~ node_modules/@types/node/http.d.ts:360:15 - error TS1434: Unexpected keyword or identifier. 360 > extends NetServer { ~~~~~~~~~ node_modules/@types/node/http.d.ts:361:37 - error TS1109: Expression expected. 361 constructor(requestListener?: RequestListener<Request, Response>); ~ node_modules/@types/node/http.d.ts:361:73 - error TS1005: '(' expected. 361 constructor(requestListener?: RequestListener<Request, Response>); ~ node_modules/@types/node/http.d.ts:361:74 - error TS1005: ')' expected. 361 constructor(requestListener?: RequestListener<Request, Response>); ~ node_modules/@types/node/http.d.ts:362:28 - error TS1005: ',' expected. 362 constructor(options: ServerOptions<Request, Response>, requestListener?: RequestListener<Request, Response>); ~ node_modules/@types/node/http.d.ts:362:62 - error TS1109: Expression expected. 362 constructor(options: ServerOptions<Request, Response>, requestListener?: RequestListener<Request, Response>); ~ node_modules/@types/node/http.d.ts:362:80 - error TS1109: Expression expected. 362 constructor(options: ServerOptions<Request, Response>, requestListener?: RequestListener<Request, Response>); ~ node_modules/@types/node/http.d.ts:362:116 - error TS1005: '(' expected. 362 constructor(options: ServerOptions<Request, Response>, requestListener?: RequestListener<Request, Response>); ~ node_modules/@types/node/http.d.ts:362:117 - error TS1005: ')' expected. 362 constructor(options: ServerOptions<Request, Response>, requestListener?: RequestListener<Request, Response>); ~ node_modules/@types/node/http.d.ts:377:26 - error TS1109: Expression expected. 377 setTimeout(msecs?: number, callback?: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:377:45 - error TS1109: Expression expected. 377 setTimeout(msecs?: number, callback?: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:377:71 - error TS1109: Expression expected. 377 setTimeout(msecs?: number, callback?: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:377:72 - error TS1005: ';' expected. 377 setTimeout(msecs?: number, callback?: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:378:28 - error TS1005: ',' expected. 378 setTimeout(callback: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:378:54 - error TS1109: Expression expected. 378 setTimeout(callback: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:378:55 - error TS1005: ';' expected. 378 setTimeout(callback: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:471:30 - error TS1005: ';' expected. 471 closeAllConnections(): void; ~ node_modules/@types/node/http.d.ts:471:36 - error TS1109: Expression expected. 471 closeAllConnections(): void; ~ node_modules/@types/node/http.d.ts:477:31 - error TS1005: ';' expected. 477 closeIdleConnections(): void; ~ node_modules/@types/node/http.d.ts:477:37 - error TS1109: Expression expected. 477 closeIdleConnections(): void; ~ node_modules/@types/node/http.d.ts:478:26 - error TS1005: ',' expected. 478 addListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:478:44 - error TS1005: ',' expected. 478 addListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:478:70 - error TS1109: Expression expected. 478 addListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:478:71 - error TS1005: ';' expected. 478 addListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:479:26 - error TS1005: ',' expected. 479 addListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:479:45 - error TS1005: ',' expected. 479 addListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:479:57 - error TS1109: Expression expected. 479 addListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:479:58 - error TS1005: ';' expected. 479 addListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:480:26 - error TS1005: ',' expected. 480 addListener(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:480:50 - error TS1005: ',' expected. 480 addListener(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:480:76 - error TS1109: Expression expected. 480 addListener(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:480:77 - error TS1005: ';' expected. 480 addListener(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:481:26 - error TS1005: ',' expected. 481 addListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:481:45 - error TS1005: ',' expected. 481 addListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:481:67 - error TS1109: Expression expected. 481 addListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:481:68 - error TS1005: ';' expected. 481 addListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:482:26 - error TS1005: ',' expected. 482 addListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:482:49 - error TS1005: ',' expected. 482 addListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:482:61 - error TS1109: Expression expected. 482 addListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:482:62 - error TS1005: ';' expected. 482 addListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:483:26 - error TS1005: ',' expected. 483 addListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:483:53 - error TS1005: ',' expected. 483 addListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:483:89 - error TS1005: '(' expected. 483 addListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:483:90 - error TS1005: ',' expected. 483 addListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:483:96 - error TS1005: ')' expected. 483 addListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:484:26 - error TS1005: ',' expected. 484 addListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:484:56 - error TS1005: ',' expected. 484 addListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:484:92 - error TS1005: '(' expected. 484 addListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:484:93 - error TS1005: ',' expected. 484 addListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:484:99 - error TS1005: ')' expected. 484 addListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:485:26 - error TS1005: ',' expected. 485 addListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:485:51 - error TS1005: ',' expected. 485 addListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:485:96 - error TS1109: Expression expected. 485 addListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:485:97 - error TS1005: ';' expected. 485 addListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:487:18 - error TS1005: ',' expected. 487 event: "connect", ~ node_modules/@types/node/http.d.ts:488:21 - error TS1005: ',' expected. 488 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:488:105 - error TS1109: Expression expected. 488 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:489:10 - error TS1005: ';' expected. 489 ): this; ~ node_modules/@types/node/http.d.ts:490:26 - error TS1005: ',' expected. 490 addListener(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:490:51 - error TS1005: ',' expected. 490 addListener(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:490:112 - error TS1109: Expression expected. 490 addListener(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:490:113 - error TS1005: ';' expected. 490 addListener(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:491:26 - error TS1005: ',' expected. 491 addListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:491:47 - error TS1005: ',' expected. 491 addListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:491:83 - error TS1005: '(' expected. 491 addListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:491:84 - error TS1005: ',' expected. 491 addListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:491:90 - error TS1005: ')' expected. 491 addListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:493:18 - error TS1005: ',' expected. 493 event: "upgrade", ~ node_modules/@types/node/http.d.ts:494:21 - error TS1005: ',' expected. 494 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:494:105 - error TS1109: Expression expected. 494 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:495:10 - error TS1005: ';' expected. 495 ): this; ~ node_modules/@types/node/http.d.ts:496:19 - error TS1005: ',' expected. 496 emit(event: string, ...args: any[]): boolean; ~ node_modules/@types/node/http.d.ts:496:36 - error TS1005: ',' expected. 496 emit(event: string, ...args: any[]): boolean; ~ node_modules/@types/node/http.d.ts:496:42 - error TS1011: An element access expression should take an argument. 496 emit(event: string, ...args: any[]): boolean; node_modules/@types/node/http.d.ts:496:44 - error TS1005: ';' expected. 496 emit(event: string, ...args: any[]): boolean; ~ node_modules/@types/node/http.d.ts:497:19 - error TS1005: ',' expected. 497 emit(event: "close"): boolean; ~ node_modules/@types/node/http.d.ts:497:29 - error TS1005: ';' expected. 497 emit(event: "close"): boolean; ~ node_modules/@types/node/http.d.ts:498:19 - error TS1005: ',' expected. 498 emit(event: "connection", socket: Socket): boolean; ~ node_modules/@types/node/http.d.ts:498:41 - error TS1005: ',' expected. 498 emit(event: "connection", socket: Socket): boolean; ~ node_modules/@types/node/http.d.ts:498:50 - error TS1005: ';' expected. 498 emit(event: "connection", socket: Socket): boolean; ~ node_modules/@types/node/http.d.ts:499:19 - error TS1005: ',' expected. 499 emit(event: "error", err: Error): boolean; ~ node_modules/@types/node/http.d.ts:499:33 - error TS1005: ',' expected. 499 emit(event: "error", err: Error): boolean; ~ node_modules/@types/node/http.d.ts:499:41 - error TS1005: ';' expected. 499 emit(event: "error", err: Error): boolean; ~ node_modules/@types/node/http.d.ts:500:19 - error TS1005: ',' expected. 500 emit(event: "listening"): boolean; ~ node_modules/@types/node/http.d.ts:500:33 - error TS1005: ';' expected. 500 emit(event: "listening"): boolean; ~ node_modules/@types/node/http.d.ts:502:18 - error TS1005: ',' expected. 502 event: "checkContinue", ~ node_modules/@types/node/http.d.ts:503:16 - error TS1005: ',' expected. 503 req: InstanceType<Request>, ~ node_modules/@types/node/http.d.ts:503:39 - error TS1109: Expression expected. 503 req: InstanceType<Request>, ~ node_modules/@types/node/http.d.ts:504:16 - error TS1005: ',' expected. 504 res: InstanceType<Response> & { req: InstanceType<Request> }, ~ node_modules/@types/node/http.d.ts:504:41 - error TS1005: '(' expected. 504 res: InstanceType<Response> & { req: InstanceType<Request> }, ~ node_modules/@types/node/http.d.ts:504:72 - error TS1005: '(' expected. 504 res: InstanceType<Response> & { req: InstanceType<Request> }, ~ node_modules/@types/node/http.d.ts:505:10 - error TS1005: ',' expected. 505 ): boolean; ~ node_modules/@types/node/http.d.ts:505:19 - error TS1005: ')' expected. 505 ): boolean; ~ node_modules/@types/node/http.d.ts:507:18 - error TS1005: ',' expected. 507 event: "checkExpectation", ~ node_modules/@types/node/http.d.ts:508:16 - error TS1005: ',' expected. 508 req: InstanceType<Request>, ~ node_modules/@types/node/http.d.ts:508:39 - error TS1109: Expression expected. 508 req: InstanceType<Request>, ~ node_modules/@types/node/http.d.ts:509:16 - error TS1005: ',' expected. 509 res: InstanceType<Response> & { req: InstanceType<Request> }, ~ node_modules/@types/node/http.d.ts:509:41 - error TS1005: '(' expected. 509 res: InstanceType<Response> & { req: InstanceType<Request> }, ~ node_modules/@types/node/http.d.ts:509:72 - error TS1005: '(' expected. 509 res: InstanceType<Response> & { req: InstanceType<Request> }, ~ node_modules/@types/node/http.d.ts:510:10 - error TS1005: ',' expected. 510 ): boolean; ~ node_modules/@types/node/http.d.ts:510:19 - error TS1005: ')' expected. 510 ): boolean; ~ node_modules/@types/node/http.d.ts:511:19 - error TS1005: ',' expected. 511 emit(event: "clientError", err: Error, socket: stream.Duplex): boolean; ~ node_modules/@types/node/http.d.ts:511:39 - error TS1005: ',' expected. 511 emit(event: "clientError", err: Error, socket: stream.Duplex): boolean; ~ node_modules/@types/node/http.d.ts:511:54 - error TS1005: ',' expected. 511 emit(event: "clientError", err: Error, socket: stream.Duplex): boolean; ~ node_modules/@types/node/http.d.ts:511:70 - error TS1005: ';' expected. 511 emit(event: "clientError", err: Error, socket: stream.Duplex): boolean; ~ node_modules/@types/node/http.d.ts:512:19 - error TS1005: ',' expected. 512 emit(event: "connect", req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/http.d.ts:512:35 - error TS1005: ',' expected. 512 emit(event: "connect", req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/http.d.ts:512:58 - error TS1109: Expression expected. 512 emit(event: "connect", req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/http.d.ts:512:66 - error TS1005: ',' expected. 512 emit(event: "connect", req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/http.d.ts:512:87 - error TS1005: ',' expected. 512 emit(event: "connect", req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/http.d.ts:512:105 - error TS1005: ';' expected. 512 emit(event: "connect", req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/http.d.ts:513:19 - error TS1005: ',' expected. 513 emit(event: "dropRequest", req: InstanceType<Request>, socket: stream.Duplex): boolean; ~ node_modules/@types/node/http.d.ts:513:39 - error TS1005: ',' expected. 513 emit(event: "dropRequest", req: InstanceType<Request>, socket: stream.Duplex): boolean; ~ node_modules/@types/node/http.d.ts:513:62 - error TS1109: Expression expected. 513 emit(event: "dropRequest", req: InstanceType<Request>, socket: stream.Duplex): boolean; ~ node_modules/@types/node/http.d.ts:513:70 - error TS1005: ',' expected. 513 emit(event: "dropRequest", req: InstanceType<Request>, socket: stream.Duplex): boolean; ~ node_modules/@types/node/http.d.ts:513:86 - error TS1005: ';' expected. 513 emit(event: "dropRequest", req: InstanceType<Request>, socket: stream.Duplex): boolean; ~ node_modules/@types/node/http.d.ts:515:18 - error TS1005: ',' expected. 515 event: "request", ~ node_modules/@types/node/http.d.ts:516:16 - error TS1005: ',' expected. 516 req: InstanceType<Request>, ~ node_modules/@types/node/http.d.ts:516:39 - error TS1109: Expression expected. 516 req: InstanceType<Request>, ~ node_modules/@types/node/http.d.ts:517:16 - error TS1005: ',' expected. 517 res: InstanceType<Response> & { req: InstanceType<Request> }, ~ node_modules/@types/node/http.d.ts:517:41 - error TS1005: '(' expected. 517 res: InstanceType<Response> & { req: InstanceType<Request> }, ~ node_modules/@types/node/http.d.ts:517:72 - error TS1005: '(' expected. 517 res: InstanceType<Response> & { req: InstanceType<Request> }, ~ node_modules/@types/node/http.d.ts:518:10 - error TS1005: ',' expected. 518 ): boolean; ~ node_modules/@types/node/http.d.ts:518:19 - error TS1005: ')' expected. 518 ): boolean; ~ node_modules/@types/node/http.d.ts:519:19 - error TS1005: ',' expected. 519 emit(event: "upgrade", req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/http.d.ts:519:35 - error TS1005: ',' expected. 519 emit(event: "upgrade", req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/http.d.ts:519:58 - error TS1109: Expression expected. 519 emit(event: "upgrade", req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/http.d.ts:519:66 - error TS1005: ',' expected. 519 emit(event: "upgrade", req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/http.d.ts:519:87 - error TS1005: ',' expected. 519 emit(event: "upgrade", req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/http.d.ts:519:105 - error TS1005: ';' expected. 519 emit(event: "upgrade", req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/http.d.ts:520:17 - error TS1005: ',' expected. 520 on(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:520:35 - error TS1005: ',' expected. 520 on(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:520:61 - error TS1109: Expression expected. 520 on(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:520:62 - error TS1005: ';' expected. 520 on(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:521:17 - error TS1005: ',' expected. 521 on(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:521:36 - error TS1005: ',' expected. 521 on(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:521:48 - error TS1109: Expression expected. 521 on(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:521:49 - error TS1005: ';' expected. 521 on(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:522:17 - error TS1005: ',' expected. 522 on(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:522:41 - error TS1005: ',' expected. 522 on(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:522:67 - error TS1109: Expression expected. 522 on(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:522:68 - error TS1005: ';' expected. 522 on(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:523:17 - error TS1005: ',' expected. 523 on(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:523:36 - error TS1005: ',' expected. 523 on(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:523:58 - error TS1109: Expression expected. 523 on(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:523:59 - error TS1005: ';' expected. 523 on(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:524:17 - error TS1005: ',' expected. 524 on(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:524:40 - error TS1005: ',' expected. 524 on(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:524:52 - error TS1109: Expression expected. 524 on(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:524:53 - error TS1005: ';' expected. 524 on(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:525:17 - error TS1005: ',' expected. 525 on(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:525:44 - error TS1005: ',' expected. 525 on(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:525:80 - error TS1005: '(' expected. 525 on(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:525:81 - error TS1005: ',' expected. 525 on(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:525:87 - error TS1005: ')' expected. 525 on(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:526:17 - error TS1005: ',' expected. 526 on(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:526:47 - error TS1005: ',' expected. 526 on(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:526:83 - error TS1005: '(' expected. 526 on(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:526:84 - error TS1005: ',' expected. 526 on(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:526:90 - error TS1005: ')' expected. 526 on(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:527:17 - error TS1005: ',' expected. 527 on(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:527:42 - error TS1005: ',' expected. 527 on(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:527:87 - error TS1109: Expression expected. 527 on(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:527:88 - error TS1005: ';' expected. 527 on(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:529:18 - error TS1005: ',' expected. 529 event: "connect", ~ node_modules/@types/node/http.d.ts:530:21 - error TS1005: ',' expected. 530 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:530:105 - error TS1109: Expression expected. 530 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:531:10 - error TS1005: ';' expected. 531 ): this; ~ node_modules/@types/node/http.d.ts:532:17 - error TS1005: ',' expected. 532 on(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:532:42 - error TS1005: ',' expected. 532 on(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:532:103 - error TS1109: Expression expected. 532 on(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:532:104 - error TS1005: ';' expected. 532 on(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:533:17 - error TS1005: ',' expected. 533 on(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:533:38 - error TS1005: ',' expected. 533 on(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:533:74 - error TS1005: '(' expected. 533 on(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:533:75 - error TS1005: ',' expected. 533 on(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:533:81 - error TS1005: ')' expected. 533 on(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:535:18 - error TS1005: ',' expected. 535 event: "upgrade", ~ node_modules/@types/node/http.d.ts:536:21 - error TS1005: ',' expected. 536 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:536:105 - error TS1109: Expression expected. 536 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:537:10 - error TS1005: ';' expected. 537 ): this; ~ node_modules/@types/node/http.d.ts:538:19 - error TS1005: ',' expected. 538 once(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:538:37 - error TS1005: ',' expected. 538 once(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:538:63 - error TS1109: Expression expected. 538 once(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:538:64 - error TS1005: ';' expected. 538 once(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:539:19 - error TS1005: ',' expected. 539 once(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:539:38 - error TS1005: ',' expected. 539 once(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:539:50 - error TS1109: Expression expected. 539 once(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:539:51 - error TS1005: ';' expected. 539 once(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:540:19 - error TS1005: ',' expected. 540 once(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:540:43 - error TS1005: ',' expected. 540 once(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:540:69 - error TS1109: Expression expected. 540 once(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:540:70 - error TS1005: ';' expected. 540 once(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:541:19 - error TS1005: ',' expected. 541 once(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:541:38 - error TS1005: ',' expected. 541 once(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:541:60 - error TS1109: Expression expected. 541 once(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:541:61 - error TS1005: ';' expected. 541 once(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:542:19 - error TS1005: ',' expected. 542 once(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:542:42 - error TS1005: ',' expected. 542 once(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:542:54 - error TS1109: Expression expected. 542 once(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:542:55 - error TS1005: ';' expected. 542 once(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:543:19 - error TS1005: ',' expected. 543 once(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:543:46 - error TS1005: ',' expected. 543 once(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:543:82 - error TS1005: '(' expected. 543 once(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:543:83 - error TS1005: ',' expected. 543 once(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:543:89 - error TS1005: ')' expected. 543 once(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:544:19 - error TS1005: ',' expected. 544 once(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:544:49 - error TS1005: ',' expected. 544 once(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:544:85 - error TS1005: '(' expected. 544 once(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:544:86 - error TS1005: ',' expected. 544 once(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:544:92 - error TS1005: ')' expected. 544 once(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:545:19 - error TS1005: ',' expected. 545 once(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:545:44 - error TS1005: ',' expected. 545 once(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:545:89 - error TS1109: Expression expected. 545 once(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:545:90 - error TS1005: ';' expected. 545 once(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:547:18 - error TS1005: ',' expected. 547 event: "connect", ~ node_modules/@types/node/http.d.ts:548:21 - error TS1005: ',' expected. 548 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:548:105 - error TS1109: Expression expected. 548 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:549:10 - error TS1005: ';' expected. 549 ): this; ~ node_modules/@types/node/http.d.ts:550:19 - error TS1005: ',' expected. 550 once(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:550:44 - error TS1005: ',' expected. 550 once(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:550:105 - error TS1109: Expression expected. 550 once(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:550:106 - error TS1005: ';' expected. 550 once(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:551:19 - error TS1005: ',' expected. 551 once(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:551:40 - error TS1005: ',' expected. 551 once(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:551:76 - error TS1005: '(' expected. 551 once(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:551:77 - error TS1005: ',' expected. 551 once(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:551:83 - error TS1005: ')' expected. 551 once(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:553:18 - error TS1005: ',' expected. 553 event: "upgrade", ~ node_modules/@types/node/http.d.ts:554:21 - error TS1005: ',' expected. 554 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:554:105 - error TS1109: Expression expected. 554 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:555:10 - error TS1005: ';' expected. 555 ): this; ~ node_modules/@types/node/http.d.ts:556:30 - error TS1005: ',' expected. 556 prependListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:556:48 - error TS1005: ',' expected. 556 prependListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:556:74 - error TS1109: Expression expected. 556 prependListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:556:75 - error TS1005: ';' expected. 556 prependListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:557:30 - error TS1005: ',' expected. 557 prependListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:557:49 - error TS1005: ',' expected. 557 prependListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:557:61 - error TS1109: Expression expected. 557 prependListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:557:62 - error TS1005: ';' expected. 557 prependListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:558:30 - error TS1005: ',' expected. 558 prependListener(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:558:54 - error TS1005: ',' expected. 558 prependListener(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:558:80 - error TS1109: Expression expected. 558 prependListener(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:558:81 - error TS1005: ';' expected. 558 prependListener(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:559:30 - error TS1005: ',' expected. 559 prependListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:559:49 - error TS1005: ',' expected. 559 prependListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:559:71 - error TS1109: Expression expected. 559 prependListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:559:72 - error TS1005: ';' expected. 559 prependListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:560:30 - error TS1005: ',' expected. 560 prependListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:560:53 - error TS1005: ',' expected. 560 prependListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:560:65 - error TS1109: Expression expected. 560 prependListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:560:66 - error TS1005: ';' expected. 560 prependListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:561:30 - error TS1005: ',' expected. 561 prependListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:561:57 - error TS1005: ',' expected. 561 prependListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:561:93 - error TS1005: '(' expected. 561 prependListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:561:94 - error TS1005: ',' expected. 561 prependListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:561:100 - error TS1005: ')' expected. 561 prependListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:562:30 - error TS1005: ',' expected. 562 prependListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:562:60 - error TS1005: ',' expected. 562 prependListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:562:96 - error TS1005: '(' expected. 562 prependListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:562:97 - error TS1005: ',' expected. 562 prependListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:562:103 - error TS1005: ')' expected. 562 prependListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:563:30 - error TS1005: ',' expected. 563 prependListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:563:55 - error TS1005: ',' expected. 563 prependListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:563:100 - error TS1109: Expression expected. 563 prependListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:563:101 - error TS1005: ';' expected. 563 prependListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:565:18 - error TS1005: ',' expected. 565 event: "connect", ~ node_modules/@types/node/http.d.ts:566:21 - error TS1005: ',' expected. 566 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:566:105 - error TS1109: Expression expected. 566 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:567:10 - error TS1005: ';' expected. 567 ): this; ~ node_modules/@types/node/http.d.ts:569:18 - error TS1005: ',' expected. 569 event: "dropRequest", ~ node_modules/@types/node/http.d.ts:570:21 - error TS1005: ',' expected. 570 listener: (req: InstanceType<Request>, socket: stream.Duplex) => void, ~ node_modules/@types/node/http.d.ts:570:82 - error TS1109: Expression expected. 570 listener: (req: InstanceType<Request>, socket: stream.Duplex) => void, ~ node_modules/@types/node/http.d.ts:571:10 - error TS1005: ';' expected. 571 ): this; ~ node_modules/@types/node/http.d.ts:572:30 - error TS1005: ',' expected. 572 prependListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:572:51 - error TS1005: ',' expected. 572 prependListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:572:87 - error TS1005: '(' expected. 572 prependListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:572:88 - error TS1005: ',' expected. 572 prependListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:572:94 - error TS1005: ')' expected. 572 prependListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:574:18 - error TS1005: ',' expected. 574 event: "upgrade", ~ node_modules/@types/node/http.d.ts:575:21 - error TS1005: ',' expected. 575 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:575:105 - error TS1109: Expression expected. 575 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:576:10 - error TS1005: ';' expected. 576 ): this; ~ node_modules/@types/node/http.d.ts:577:34 - error TS1005: ',' expected. 577 prependOnceListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:577:52 - error TS1005: ',' expected. 577 prependOnceListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:577:78 - error TS1109: Expression expected. 577 prependOnceListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:577:79 - error TS1005: ';' expected. 577 prependOnceListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http.d.ts:578:34 - error TS1005: ',' expected. 578 prependOnceListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:578:53 - error TS1005: ',' expected. 578 prependOnceListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:578:65 - error TS1109: Expression expected. 578 prependOnceListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:578:66 - error TS1005: ';' expected. 578 prependOnceListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:579:34 - error TS1005: ',' expected. 579 prependOnceListener(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:579:58 - error TS1005: ',' expected. 579 prependOnceListener(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:579:84 - error TS1109: Expression expected. 579 prependOnceListener(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:579:85 - error TS1005: ';' expected. 579 prependOnceListener(event: "connection", listener: (socket: Socket) => void): this; ~ node_modules/@types/node/http.d.ts:580:34 - error TS1005: ',' expected. 580 prependOnceListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:580:53 - error TS1005: ',' expected. 580 prependOnceListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:580:75 - error TS1109: Expression expected. 580 prependOnceListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:580:76 - error TS1005: ';' expected. 580 prependOnceListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/http.d.ts:581:34 - error TS1005: ',' expected. 581 prependOnceListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:581:57 - error TS1005: ',' expected. 581 prependOnceListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:581:69 - error TS1109: Expression expected. 581 prependOnceListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:581:70 - error TS1005: ';' expected. 581 prependOnceListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/http.d.ts:582:34 - error TS1005: ',' expected. 582 prependOnceListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:582:61 - error TS1005: ',' expected. 582 prependOnceListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:582:97 - error TS1005: '(' expected. 582 prependOnceListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:582:98 - error TS1005: ',' expected. 582 prependOnceListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:582:104 - error TS1005: ')' expected. 582 prependOnceListener(event: "checkContinue", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:583:34 - error TS1005: ',' expected. 583 prependOnceListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:583:64 - error TS1005: ',' expected. 583 prependOnceListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:583:100 - error TS1005: '(' expected. 583 prependOnceListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:583:101 - error TS1005: ',' expected. 583 prependOnceListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:583:107 - error TS1005: ')' expected. 583 prependOnceListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:584:34 - error TS1005: ',' expected. 584 prependOnceListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:584:59 - error TS1005: ',' expected. 584 prependOnceListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:584:104 - error TS1109: Expression expected. 584 prependOnceListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:584:105 - error TS1005: ';' expected. 584 prependOnceListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this; ~ node_modules/@types/node/http.d.ts:586:18 - error TS1005: ',' expected. 586 event: "connect", ~ node_modules/@types/node/http.d.ts:587:21 - error TS1005: ',' expected. 587 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:587:105 - error TS1109: Expression expected. 587 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:588:10 - error TS1005: ';' expected. 588 ): this; ~ node_modules/@types/node/http.d.ts:590:18 - error TS1005: ',' expected. 590 event: "dropRequest", ~ node_modules/@types/node/http.d.ts:591:21 - error TS1005: ',' expected. 591 listener: (req: InstanceType<Request>, socket: stream.Duplex) => void, ~ node_modules/@types/node/http.d.ts:591:82 - error TS1109: Expression expected. 591 listener: (req: InstanceType<Request>, socket: stream.Duplex) => void, ~ node_modules/@types/node/http.d.ts:592:10 - error TS1005: ';' expected. 592 ): this; ~ node_modules/@types/node/http.d.ts:593:34 - error TS1005: ',' expected. 593 prependOnceListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:593:55 - error TS1005: ',' expected. 593 prependOnceListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:593:91 - error TS1005: '(' expected. 593 prependOnceListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:593:92 - error TS1005: ',' expected. 593 prependOnceListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:593:98 - error TS1005: ')' expected. 593 prependOnceListener(event: "request", listener: RequestListener<Request, Response>): this; ~ node_modules/@types/node/http.d.ts:595:18 - error TS1005: ',' expected. 595 event: "upgrade", ~ node_modules/@types/node/http.d.ts:596:21 - error TS1005: ',' expected. 596 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:596:105 - error TS1109: Expression expected. 596 listener: (req: InstanceType<Request>, socket: stream.Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/http.d.ts:597:10 - error TS1005: ';' expected. 597 ): this; ~ node_modules/@types/node/http.d.ts:1724:47 - error TS1005: ',' expected. 1724 Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse, ~ node_modules/@types/node/http.d.ts:1724:71 - error TS1109: Expression expected. 1724 Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse, ~ node_modules/@types/node/http.d.ts:1725:5 - error TS1109: Expression expected. 1725 >(requestListener?: RequestListener<Request, Response>): Server<Request, Response>; ~ node_modules/@types/node/http.d.ts:1725:23 - error TS1109: Expression expected. 1725 >(requestListener?: RequestListener<Request, Response>): Server<Request, Response>; ~ node_modules/@types/node/http.d.ts:1725:59 - error TS1005: '(' expected. 1725 >(requestListener?: RequestListener<Request, Response>): Server<Request, Response>; ~ node_modules/@types/node/http.d.ts:1725:60 - error TS1005: ')' expected. 1725 >(requestListener?: RequestListener<Request, Response>): Server<Request, Response>; ~ node_modules/@types/node/http.d.ts:1725:87 - error TS1005: '(' expected. 1725 >(requestListener?: RequestListener<Request, Response>): Server<Request, Response>; ~ node_modules/@types/node/http.d.ts:1728:47 - error TS1005: ',' expected. 1728 Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse, ~ node_modules/@types/node/http.d.ts:1728:71 - error TS1109: Expression expected. 1728 Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse, ~ node_modules/@types/node/http.d.ts:1729:5 - error TS1109: Expression expected. 1729 >( ~ node_modules/@types/node/http.d.ts:1730:16 - error TS1005: ')' expected. 1730 options: ServerOptions<Request, Response>, ~ node_modules/@types/node/http.d.ts:1730:50 - error TS1109: Expression expected. 1730 options: ServerOptions<Request, Response>, ~ node_modules/@types/node/http.d.ts:1731:25 - error TS1109: Expression expected. 1731 requestListener?: RequestListener<Request, Response>, ~ node_modules/@types/node/http.d.ts:1731:61 - error TS1109: Expression expected. 1731 requestListener?: RequestListener<Request, Response>, ~ node_modules/@types/node/http.d.ts:1732:5 - error TS1109: Expression expected. 1732 ): Server<Request, Response>; ~ node_modules/@types/node/http.d.ts:1732:6 - error TS1128: Declaration or statement expected. 1732 ): Server<Request, Response>; ~ node_modules/@types/node/http.d.ts:1732:33 - error TS1005: '(' expected. 1732 ): Server<Request, Response>; ~ node_modules/@types/node/http2.d.ts:1068:52 - error TS1005: ',' expected. 1068 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1068:81 - error TS1109: Expression expected. 1068 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1069:22 - error TS1005: ';' expected. 1069 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~~~~~~~ node_modules/@types/node/http2.d.ts:1069:56 - error TS1005: ';' expected. 1069 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~ node_modules/@types/node/http2.d.ts:1070:23 - error TS1005: ';' expected. 1070 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~~~~~~~ node_modules/@types/node/http2.d.ts:1070:86 - error TS1109: Expression expected. 1070 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~ node_modules/@types/node/http2.d.ts:1071:5 - error TS1109: Expression expected. 1071 > extends Http2Session { ~ node_modules/@types/node/http2.d.ts:1071:7 - error TS1109: Expression expected. 1071 > extends Http2Session { ~~~~~~~ node_modules/@types/node/http2.d.ts:1071:15 - error TS1434: Unexpected keyword or identifier. 1071 > extends Http2Session { ~~~~~~~~~~~~ node_modules/@types/node/http2.d.ts:1072:9 - error TS1128: Declaration or statement expected. 1072 readonly server: ~~~~~~~~ node_modules/@types/node/http2.d.ts:1073:13 - error TS1109: Expression expected. 1073 | Http2Server<Http1Request, Http1Response, Http2Request, Http2Response> ~ node_modules/@types/node/http2.d.ts:1074:13 - error TS1005: '(' expected. 1074 | Http2SecureServer<Http1Request, Http1Response, Http2Request, Http2Response>; ~ node_modules/@types/node/http2.d.ts:1074:90 - error TS1005: '(' expected. 1074 | Http2SecureServer<Http1Request, Http1Response, Http2Request, Http2Response>; ~ node_modules/@types/node/http2.d.ts:1113:19 - error TS1005: ',' expected. 1113 altsvc(alt: string, originOrStream: number | string | url.URL | AlternativeServiceOptions): void; ~ node_modules/@types/node/http2.d.ts:1113:43 - error TS1005: ',' expected. 1113 altsvc(alt: string, originOrStream: number | string | url.URL | AlternativeServiceOptions): void; ~ node_modules/@types/node/http2.d.ts:1113:99 - error TS1005: ';' expected. 1113 altsvc(alt: string, originOrStream: number | string | url.URL | AlternativeServiceOptions): void; ~ node_modules/@types/node/http2.d.ts:1113:105 - error TS1109: Expression expected. 1113 altsvc(alt: string, originOrStream: number | string | url.URL | AlternativeServiceOptions): void; ~ node_modules/@types/node/http2.d.ts:1159:23 - error TS1005: ',' expected. 1159 ...origins: Array< ~ node_modules/@types/node/http2.d.ts:1166:9 - error TS1005: '(' expected. 1166 ): void; ~ node_modules/@types/node/http2.d.ts:1166:10 - error TS1005: ',' expected. 1166 ): void; ~ node_modules/@types/node/http2.d.ts:1166:16 - error TS1109: Expression expected. 1166 ): void; ~ node_modules/@types/node/http2.d.ts:1168:18 - error TS1005: ',' expected. 1168 event: "connect", ~ node_modules/@types/node/http2.d.ts:1169:21 - error TS1005: ',' expected. 1169 listener: ( ~ node_modules/@types/node/http2.d.ts:1172:22 - error TS1109: Expression expected. 1172 ) => void, ~ node_modules/@types/node/http2.d.ts:1173:10 - error TS1005: ';' expected. 1173 ): this; ~ node_modules/@types/node/http2.d.ts:1175:18 - error TS1005: ',' expected. 1175 event: "stream", ~ node_modules/@types/node/http2.d.ts:1176:21 - error TS1005: ',' expected. 1176 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1176:103 - error TS1109: Expression expected. 1176 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1177:10 - error TS1005: ';' expected. 1177 ): this; ~ node_modules/@types/node/http2.d.ts:1178:26 - error TS1005: ',' expected. 1178 addListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1178:53 - error TS1005: ',' expected. 1178 addListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1178:79 - error TS1109: Expression expected. 1178 addListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1178:80 - error TS1005: ';' expected. 1178 addListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1180:18 - error TS1005: ',' expected. 1180 event: "connect", ~ node_modules/@types/node/http2.d.ts:1181:20 - error TS1005: ',' expected. 1181 session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>, ~ node_modules/@types/node/http2.d.ts:1181:98 - error TS1109: Expression expected. 1181 session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>, ~ node_modules/@types/node/http2.d.ts:1182:19 - error TS1005: ',' expected. 1182 socket: net.Socket | tls.TLSSocket, ~ node_modules/@types/node/http2.d.ts:1183:10 - error TS1005: ';' expected. 1183 ): boolean; ~ node_modules/@types/node/http2.d.ts:1184:19 - error TS1005: ',' expected. 1184 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1184:37 - error TS1005: ',' expected. 1184 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1184:65 - error TS1005: ',' expected. 1184 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1184:93 - error TS1005: ',' expected. 1184 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1184:102 - error TS1005: ';' expected. 1184 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1185:19 - error TS1005: ',' expected. 1185 emit(event: string | symbol, ...args: any[]): boolean; ~ node_modules/@types/node/http2.d.ts:1185:45 - error TS1005: ',' expected. 1185 emit(event: string | symbol, ...args: any[]): boolean; ~ node_modules/@types/node/http2.d.ts:1185:51 - error TS1011: An element access expression should take an argument. 1185 emit(event: string | symbol, ...args: any[]): boolean; node_modules/@types/node/http2.d.ts:1185:53 - error TS1005: ';' expected. 1185 emit(event: string | symbol, ...args: any[]): boolean; ~ node_modules/@types/node/http2.d.ts:1187:18 - error TS1005: ',' expected. 1187 event: "connect", ~ node_modules/@types/node/http2.d.ts:1188:21 - error TS1005: ',' expected. 1188 listener: ( ~ node_modules/@types/node/http2.d.ts:1191:22 - error TS1109: Expression expected. 1191 ) => void, ~ node_modules/@types/node/http2.d.ts:1192:10 - error TS1005: ';' expected. 1192 ): this; ~ node_modules/@types/node/http2.d.ts:1194:18 - error TS1005: ',' expected. 1194 event: "stream", ~ node_modules/@types/node/http2.d.ts:1195:21 - error TS1005: ',' expected. 1195 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1195:103 - error TS1109: Expression expected. 1195 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1196:10 - error TS1005: ';' expected. 1196 ): this; ~ node_modules/@types/node/http2.d.ts:1197:17 - error TS1005: ',' expected. 1197 on(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1197:44 - error TS1005: ',' expected. 1197 on(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1197:70 - error TS1109: Expression expected. 1197 on(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1197:71 - error TS1005: ';' expected. 1197 on(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1199:18 - error TS1005: ',' expected. 1199 event: "connect", ~ node_modules/@types/node/http2.d.ts:1200:21 - error TS1005: ',' expected. 1200 listener: ( ~ node_modules/@types/node/http2.d.ts:1203:22 - error TS1109: Expression expected. 1203 ) => void, ~ node_modules/@types/node/http2.d.ts:1204:10 - error TS1005: ';' expected. 1204 ): this; ~ node_modules/@types/node/http2.d.ts:1206:18 - error TS1005: ',' expected. 1206 event: "stream", ~ node_modules/@types/node/http2.d.ts:1207:21 - error TS1005: ',' expected. 1207 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1207:103 - error TS1109: Expression expected. 1207 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1208:10 - error TS1005: ';' expected. 1208 ): this; ~ node_modules/@types/node/http2.d.ts:1209:19 - error TS1005: ',' expected. 1209 once(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1209:46 - error TS1005: ',' expected. 1209 once(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1209:72 - error TS1109: Expression expected. 1209 once(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1209:73 - error TS1005: ';' expected. 1209 once(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1211:18 - error TS1005: ',' expected. 1211 event: "connect", ~ node_modules/@types/node/http2.d.ts:1212:21 - error TS1005: ',' expected. 1212 listener: ( ~ node_modules/@types/node/http2.d.ts:1215:22 - error TS1109: Expression expected. 1215 ) => void, ~ node_modules/@types/node/http2.d.ts:1216:10 - error TS1005: ';' expected. 1216 ): this; ~ node_modules/@types/node/http2.d.ts:1218:18 - error TS1005: ',' expected. 1218 event: "stream", ~ node_modules/@types/node/http2.d.ts:1219:21 - error TS1005: ',' expected. 1219 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1219:103 - error TS1109: Expression expected. 1219 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1220:10 - error TS1005: ';' expected. 1220 ): this; ~ node_modules/@types/node/http2.d.ts:1221:30 - error TS1005: ',' expected. 1221 prependListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1221:57 - error TS1005: ',' expected. 1221 prependListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1221:83 - error TS1109: Expression expected. 1221 prependListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1221:84 - error TS1005: ';' expected. 1221 prependListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1223:18 - error TS1005: ',' expected. 1223 event: "connect", ~ node_modules/@types/node/http2.d.ts:1224:21 - error TS1005: ',' expected. 1224 listener: ( ~ node_modules/@types/node/http2.d.ts:1227:22 - error TS1109: Expression expected. 1227 ) => void, ~ node_modules/@types/node/http2.d.ts:1228:10 - error TS1005: ';' expected. 1228 ): this; ~ node_modules/@types/node/http2.d.ts:1230:18 - error TS1005: ',' expected. 1230 event: "stream", ~ node_modules/@types/node/http2.d.ts:1231:21 - error TS1005: ',' expected. 1231 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1231:103 - error TS1109: Expression expected. 1231 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1232:10 - error TS1005: ';' expected. 1232 ): this; ~ node_modules/@types/node/http2.d.ts:1233:34 - error TS1005: ',' expected. 1233 prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1233:61 - error TS1005: ',' expected. 1233 prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1233:87 - error TS1109: Expression expected. 1233 prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1233:88 - error TS1005: ';' expected. 1233 prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1338:52 - error TS1005: ',' expected. 1338 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1338:81 - error TS1109: Expression expected. 1338 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1339:22 - error TS1005: ';' expected. 1339 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~~~~~~~ node_modules/@types/node/http2.d.ts:1339:56 - error TS1005: ';' expected. 1339 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~ node_modules/@types/node/http2.d.ts:1340:23 - error TS1005: ';' expected. 1340 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~~~~~~~ node_modules/@types/node/http2.d.ts:1340:86 - error TS1109: Expression expected. 1340 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~ node_modules/@types/node/http2.d.ts:1341:5 - error TS1109: Expression expected. 1341 > extends SessionOptions { ~ node_modules/@types/node/http2.d.ts:1341:7 - error TS1109: Expression expected. 1341 > extends SessionOptions { ~~~~~~~ node_modules/@types/node/http2.d.ts:1341:15 - error TS1434: Unexpected keyword or identifier. 1341 > extends SessionOptions { ~~~~~~~~~~~~~~ node_modules/@types/node/http2.d.ts:1342:26 - error TS1109: Expression expected. 1342 streamResetBurst?: number | undefined; ~ node_modules/@types/node/http2.d.ts:1343:25 - error TS1109: Expression expected. 1343 streamResetRate?: number | undefined; ~ node_modules/@types/node/http2.d.ts:1344:30 - error TS1109: Expression expected. 1344 Http1IncomingMessage?: Http1Request | undefined; ~ node_modules/@types/node/http2.d.ts:1345:29 - error TS1109: Expression expected. 1345 Http1ServerResponse?: Http1Response | undefined; ~ node_modules/@types/node/http2.d.ts:1346:28 - error TS1109: Expression expected. 1346 Http2ServerRequest?: Http2Request | undefined; ~ node_modules/@types/node/http2.d.ts:1347:29 - error TS1109: Expression expected. 1347 Http2ServerResponse?: Http2Response | undefined; ~ node_modules/@types/node/http2.d.ts:1352:52 - error TS1005: ',' expected. 1352 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1352:81 - error TS1109: Expression expected. 1352 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1353:22 - error TS1005: ';' expected. 1353 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~~~~~~~ node_modules/@types/node/http2.d.ts:1353:56 - error TS1005: ';' expected. 1353 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~ node_modules/@types/node/http2.d.ts:1354:23 - error TS1005: ';' expected. 1354 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~~~~~~~ node_modules/@types/node/http2.d.ts:1354:86 - error TS1109: Expression expected. 1354 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~ node_modules/@types/node/http2.d.ts:1355:5 - error TS1109: Expression expected. 1355 > extends ServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response>, tls.TlsOptions {} ~ node_modules/@types/node/http2.d.ts:1355:7 - error TS1109: Expression expected. 1355 > extends ServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response>, tls.TlsOptions {} ~~~~~~~ node_modules/@types/node/http2.d.ts:1355:93 - error TS1109: Expression expected. 1355 > extends ServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response>, tls.TlsOptions {} ~ node_modules/@types/node/http2.d.ts:1355:110 - error TS1005: ';' expected. 1355 > extends ServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response>, tls.TlsOptions {} ~ node_modules/@types/node/http2.d.ts:1358:52 - error TS1005: ',' expected. 1358 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1358:81 - error TS1109: Expression expected. 1358 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1359:22 - error TS1005: ';' expected. 1359 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~~~~~~~ node_modules/@types/node/http2.d.ts:1359:56 - error TS1005: ';' expected. 1359 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~ node_modules/@types/node/http2.d.ts:1360:23 - error TS1005: ';' expected. 1360 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~~~~~~~ node_modules/@types/node/http2.d.ts:1360:86 - error TS1109: Expression expected. 1360 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~ node_modules/@types/node/http2.d.ts:1361:5 - error TS1109: Expression expected. 1361 > extends ServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response> {} ~ node_modules/@types/node/http2.d.ts:1361:7 - error TS1109: Expression expected. 1361 > extends ServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response> {} ~~~~~~~ node_modules/@types/node/http2.d.ts:1364:52 - error TS1005: ',' expected. 1364 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1364:81 - error TS1109: Expression expected. 1364 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1365:22 - error TS1005: ';' expected. 1365 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~~~~~~~ node_modules/@types/node/http2.d.ts:1365:56 - error TS1005: ';' expected. 1365 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~ node_modules/@types/node/http2.d.ts:1366:23 - error TS1005: ';' expected. 1366 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~~~~~~~ node_modules/@types/node/http2.d.ts:1366:86 - error TS1109: Expression expected. 1366 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~ node_modules/@types/node/http2.d.ts:1367:5 - error TS1109: Expression expected. 1367 > extends SecureServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response> { ~ node_modules/@types/node/http2.d.ts:1367:7 - error TS1109: Expression expected. 1367 > extends SecureServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response> { ~~~~~~~ node_modules/@types/node/http2.d.ts:1368:41 - error TS1005: ',' expected. 1368 allowHTTP1?: boolean | undefined; ~ node_modules/@types/node/http2.d.ts:1369:26 - error TS1011: An element access expression should take an argument. 1369 origins?: string[] | undefined; node_modules/@types/node/http2.d.ts:1369:39 - error TS1005: ',' expected. 1369 origins?: string[] | undefined; ~ node_modules/@types/node/http2.d.ts:1381:52 - error TS1005: ',' expected. 1381 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1381:81 - error TS1109: Expression expected. 1381 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1382:22 - error TS1005: ';' expected. 1382 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~~~~~~~ node_modules/@types/node/http2.d.ts:1382:56 - error TS1005: ';' expected. 1382 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~ node_modules/@types/node/http2.d.ts:1383:23 - error TS1005: ';' expected. 1383 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~~~~~~~ node_modules/@types/node/http2.d.ts:1383:86 - error TS1109: Expression expected. 1383 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~ node_modules/@types/node/http2.d.ts:1384:5 - error TS1109: Expression expected. 1384 > extends net.Server, HTTP2ServerCommon { ~ node_modules/@types/node/http2.d.ts:1384:7 - error TS1109: Expression expected. 1384 > extends net.Server, HTTP2ServerCommon { ~~~~~~~ node_modules/@types/node/http2.d.ts:1384:45 - error TS1005: ';' expected. 1384 > extends net.Server, HTTP2ServerCommon { ~ node_modules/@types/node/http2.d.ts:1386:18 - error TS1005: ',' expected. 1386 event: "checkContinue", ~ node_modules/@types/node/http2.d.ts:1387:21 - error TS1005: ',' expected. 1387 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1387:107 - error TS1109: Expression expected. 1387 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1388:10 - error TS1005: ';' expected. 1388 ): this; ~ node_modules/@types/node/http2.d.ts:1390:18 - error TS1005: ',' expected. 1390 event: "request", ~ node_modules/@types/node/http2.d.ts:1391:21 - error TS1005: ',' expected. 1391 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1391:107 - error TS1109: Expression expected. 1391 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1392:10 - error TS1005: ';' expected. 1392 ): this; ~ node_modules/@types/node/http2.d.ts:1394:18 - error TS1005: ',' expected. 1394 event: "session", ~ node_modules/@types/node/http2.d.ts:1395:21 - error TS1005: ',' expected. 1395 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1395:118 - error TS1109: Expression expected. 1395 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1396:10 - error TS1005: ';' expected. 1396 ): this; ~ node_modules/@types/node/http2.d.ts:1397:26 - error TS1005: ',' expected. 1397 addListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1397:52 - error TS1005: ',' expected. 1397 addListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1397:74 - error TS1109: Expression expected. 1397 addListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1397:75 - error TS1005: ';' expected. 1397 addListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1399:18 - error TS1005: ',' expected. 1399 event: "stream", ~ node_modules/@types/node/http2.d.ts:1400:21 - error TS1005: ',' expected. 1400 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1400:103 - error TS1109: Expression expected. 1400 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1401:10 - error TS1005: ';' expected. 1401 ): this; ~ node_modules/@types/node/http2.d.ts:1402:26 - error TS1005: ',' expected. 1402 addListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1402:47 - error TS1005: ',' expected. 1402 addListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1402:59 - error TS1109: Expression expected. 1402 addListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1402:60 - error TS1005: ';' expected. 1402 addListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1403:26 - error TS1005: ',' expected. 1403 addListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1403:53 - error TS1005: ',' expected. 1403 addListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1403:79 - error TS1109: Expression expected. 1403 addListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1403:80 - error TS1005: ';' expected. 1403 addListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1405:18 - error TS1005: ',' expected. 1405 event: "checkContinue", ~ node_modules/@types/node/http2.d.ts:1406:20 - error TS1005: ',' expected. 1406 request: InstanceType<Http2Request>, ~ node_modules/@types/node/http2.d.ts:1406:48 - error TS1109: Expression expected. 1406 request: InstanceType<Http2Request>, ~ node_modules/@types/node/http2.d.ts:1407:21 - error TS1005: ',' expected. 1407 response: InstanceType<Http2Response>, ~ node_modules/@types/node/http2.d.ts:1407:50 - error TS1109: Expression expected. 1407 response: InstanceType<Http2Response>, ~ node_modules/@types/node/http2.d.ts:1408:10 - error TS1005: ';' expected. 1408 ): boolean; ~ node_modules/@types/node/http2.d.ts:1409:19 - error TS1005: ',' expected. 1409 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1409:39 - error TS1005: ',' expected. 1409 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1409:67 - error TS1109: Expression expected. 1409 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1409:77 - error TS1005: ',' expected. 1409 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1409:106 - error TS1005: '(' expected. 1409 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1409:107 - error TS1005: ',' expected. 1409 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1409:116 - error TS1005: ')' expected. 1409 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1411:18 - error TS1005: ',' expected. 1411 event: "session", ~ node_modules/@types/node/http2.d.ts:1412:20 - error TS1005: ',' expected. 1412 session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>, ~ node_modules/@types/node/http2.d.ts:1412:98 - error TS1109: Expression expected. 1412 session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>, ~ node_modules/@types/node/http2.d.ts:1413:10 - error TS1005: ';' expected. 1413 ): boolean; ~ node_modules/@types/node/http2.d.ts:1414:19 - error TS1005: ',' expected. 1414 emit(event: "sessionError", err: Error): boolean; ~ node_modules/@types/node/http2.d.ts:1414:40 - error TS1005: ',' expected. 1414 emit(event: "sessionError", err: Error): boolean; ~ node_modules/@types/node/http2.d.ts:1414:48 - error TS1005: ';' expected. 1414 emit(event: "sessionError", err: Error): boolean; ~ node_modules/@types/node/http2.d.ts:1415:19 - error TS1005: ',' expected. 1415 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1415:37 - error TS1005: ',' expected. 1415 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1415:65 - error TS1005: ',' expected. 1415 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1415:93 - error TS1005: ',' expected. 1415 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1415:102 - error TS1005: ';' expected. 1415 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1416:19 - error TS1005: ',' expected. 1416 emit(event: "timeout"): boolean; ~ node_modules/@types/node/http2.d.ts:1416:31 - error TS1005: ';' expected. 1416 emit(event: "timeout"): boolean; ~ node_modules/@types/node/http2.d.ts:1417:19 - error TS1005: ',' expected. 1417 emit(event: string | symbol, ...args: any[]): boolean; ~ node_modules/@types/node/http2.d.ts:1417:45 - error TS1005: ',' expected. 1417 emit(event: string | symbol, ...args: any[]): boolean; ~ node_modules/@types/node/http2.d.ts:1417:51 - error TS1011: An element access expression should take an argument. 1417 emit(event: string | symbol, ...args: any[]): boolean; node_modules/@types/node/http2.d.ts:1417:53 - error TS1005: ';' expected. 1417 emit(event: string | symbol, ...args: any[]): boolean; ~ node_modules/@types/node/http2.d.ts:1419:18 - error TS1005: ',' expected. 1419 event: "checkContinue", ~ node_modules/@types/node/http2.d.ts:1420:21 - error TS1005: ',' expected. 1420 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1420:107 - error TS1109: Expression expected. 1420 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1421:10 - error TS1005: ';' expected. 1421 ): this; ~ node_modules/@types/node/http2.d.ts:1423:18 - error TS1005: ',' expected. 1423 event: "request", ~ node_modules/@types/node/http2.d.ts:1424:21 - error TS1005: ',' expected. 1424 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1424:107 - error TS1109: Expression expected. 1424 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1425:10 - error TS1005: ';' expected. 1425 ): this; ~ node_modules/@types/node/http2.d.ts:1427:18 - error TS1005: ',' expected. 1427 event: "session", ~ node_modules/@types/node/http2.d.ts:1428:21 - error TS1005: ',' expected. 1428 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1428:118 - error TS1109: Expression expected. 1428 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1429:10 - error TS1005: ';' expected. 1429 ): this; ~ node_modules/@types/node/http2.d.ts:1430:17 - error TS1005: ',' expected. 1430 on(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1430:43 - error TS1005: ',' expected. 1430 on(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1430:65 - error TS1109: Expression expected. 1430 on(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1430:66 - error TS1005: ';' expected. 1430 on(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1432:18 - error TS1005: ',' expected. 1432 event: "stream", ~ node_modules/@types/node/http2.d.ts:1433:21 - error TS1005: ',' expected. 1433 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1433:103 - error TS1109: Expression expected. 1433 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1434:10 - error TS1005: ';' expected. 1434 ): this; ~ node_modules/@types/node/http2.d.ts:1435:17 - error TS1005: ',' expected. 1435 on(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1435:38 - error TS1005: ',' expected. 1435 on(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1435:50 - error TS1109: Expression expected. 1435 on(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1435:51 - error TS1005: ';' expected. 1435 on(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1436:17 - error TS1005: ',' expected. 1436 on(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1436:44 - error TS1005: ',' expected. 1436 on(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1436:70 - error TS1109: Expression expected. 1436 on(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1436:71 - error TS1005: ';' expected. 1436 on(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1438:18 - error TS1005: ',' expected. 1438 event: "checkContinue", ~ node_modules/@types/node/http2.d.ts:1439:21 - error TS1005: ',' expected. 1439 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1439:107 - error TS1109: Expression expected. 1439 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1440:10 - error TS1005: ';' expected. 1440 ): this; ~ node_modules/@types/node/http2.d.ts:1442:18 - error TS1005: ',' expected. 1442 event: "request", ~ node_modules/@types/node/http2.d.ts:1443:21 - error TS1005: ',' expected. 1443 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1443:107 - error TS1109: Expression expected. 1443 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1444:10 - error TS1005: ';' expected. 1444 ): this; ~ node_modules/@types/node/http2.d.ts:1446:18 - error TS1005: ',' expected. 1446 event: "session", ~ node_modules/@types/node/http2.d.ts:1447:21 - error TS1005: ',' expected. 1447 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1447:118 - error TS1109: Expression expected. 1447 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1448:10 - error TS1005: ';' expected. 1448 ): this; ~ node_modules/@types/node/http2.d.ts:1449:19 - error TS1005: ',' expected. 1449 once(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1449:45 - error TS1005: ',' expected. 1449 once(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1449:67 - error TS1109: Expression expected. 1449 once(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1449:68 - error TS1005: ';' expected. 1449 once(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1451:18 - error TS1005: ',' expected. 1451 event: "stream", ~ node_modules/@types/node/http2.d.ts:1452:21 - error TS1005: ',' expected. 1452 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1452:103 - error TS1109: Expression expected. 1452 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1453:10 - error TS1005: ';' expected. 1453 ): this; ~ node_modules/@types/node/http2.d.ts:1454:19 - error TS1005: ',' expected. 1454 once(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1454:40 - error TS1005: ',' expected. 1454 once(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1454:52 - error TS1109: Expression expected. 1454 once(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1454:53 - error TS1005: ';' expected. 1454 once(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1455:19 - error TS1005: ',' expected. 1455 once(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1455:46 - error TS1005: ',' expected. 1455 once(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1455:72 - error TS1109: Expression expected. 1455 once(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1455:73 - error TS1005: ';' expected. 1455 once(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1457:18 - error TS1005: ',' expected. 1457 event: "checkContinue", ~ node_modules/@types/node/http2.d.ts:1458:21 - error TS1005: ',' expected. 1458 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1458:107 - error TS1109: Expression expected. 1458 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1459:10 - error TS1005: ';' expected. 1459 ): this; ~ node_modules/@types/node/http2.d.ts:1461:18 - error TS1005: ',' expected. 1461 event: "request", ~ node_modules/@types/node/http2.d.ts:1462:21 - error TS1005: ',' expected. 1462 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1462:107 - error TS1109: Expression expected. 1462 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1463:10 - error TS1005: ';' expected. 1463 ): this; ~ node_modules/@types/node/http2.d.ts:1465:18 - error TS1005: ',' expected. 1465 event: "session", ~ node_modules/@types/node/http2.d.ts:1466:21 - error TS1005: ',' expected. 1466 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1466:118 - error TS1109: Expression expected. 1466 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1467:10 - error TS1005: ';' expected. 1467 ): this; ~ node_modules/@types/node/http2.d.ts:1468:30 - error TS1005: ',' expected. 1468 prependListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1468:56 - error TS1005: ',' expected. 1468 prependListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1468:78 - error TS1109: Expression expected. 1468 prependListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1468:79 - error TS1005: ';' expected. 1468 prependListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1470:18 - error TS1005: ',' expected. 1470 event: "stream", ~ node_modules/@types/node/http2.d.ts:1471:21 - error TS1005: ',' expected. 1471 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1471:103 - error TS1109: Expression expected. 1471 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1472:10 - error TS1005: ';' expected. 1472 ): this; ~ node_modules/@types/node/http2.d.ts:1473:30 - error TS1005: ',' expected. 1473 prependListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1473:51 - error TS1005: ',' expected. 1473 prependListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1473:63 - error TS1109: Expression expected. 1473 prependListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1473:64 - error TS1005: ';' expected. 1473 prependListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1474:30 - error TS1005: ',' expected. 1474 prependListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1474:57 - error TS1005: ',' expected. 1474 prependListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1474:83 - error TS1109: Expression expected. 1474 prependListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1474:84 - error TS1005: ';' expected. 1474 prependListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1476:18 - error TS1005: ',' expected. 1476 event: "checkContinue", ~ node_modules/@types/node/http2.d.ts:1477:21 - error TS1005: ',' expected. 1477 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1477:107 - error TS1109: Expression expected. 1477 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1478:10 - error TS1005: ';' expected. 1478 ): this; ~ node_modules/@types/node/http2.d.ts:1480:18 - error TS1005: ',' expected. 1480 event: "request", ~ node_modules/@types/node/http2.d.ts:1481:21 - error TS1005: ',' expected. 1481 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1481:107 - error TS1109: Expression expected. 1481 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1482:10 - error TS1005: ';' expected. 1482 ): this; ~ node_modules/@types/node/http2.d.ts:1484:18 - error TS1005: ',' expected. 1484 event: "session", ~ node_modules/@types/node/http2.d.ts:1485:21 - error TS1005: ',' expected. 1485 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1485:118 - error TS1109: Expression expected. 1485 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1486:10 - error TS1005: ';' expected. 1486 ): this; ~ node_modules/@types/node/http2.d.ts:1487:34 - error TS1005: ',' expected. 1487 prependOnceListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1487:60 - error TS1005: ',' expected. 1487 prependOnceListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1487:82 - error TS1109: Expression expected. 1487 prependOnceListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1487:83 - error TS1005: ';' expected. 1487 prependOnceListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1489:18 - error TS1005: ',' expected. 1489 event: "stream", ~ node_modules/@types/node/http2.d.ts:1490:21 - error TS1005: ',' expected. 1490 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1490:103 - error TS1109: Expression expected. 1490 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1491:10 - error TS1005: ';' expected. 1491 ): this; ~ node_modules/@types/node/http2.d.ts:1492:34 - error TS1005: ',' expected. 1492 prependOnceListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1492:55 - error TS1005: ',' expected. 1492 prependOnceListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1492:67 - error TS1109: Expression expected. 1492 prependOnceListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1492:68 - error TS1005: ';' expected. 1492 prependOnceListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1493:34 - error TS1005: ',' expected. 1493 prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1493:61 - error TS1005: ',' expected. 1493 prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1493:87 - error TS1109: Expression expected. 1493 prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1493:88 - error TS1005: ';' expected. 1493 prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1497:52 - error TS1005: ',' expected. 1497 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1497:81 - error TS1109: Expression expected. 1497 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:1498:22 - error TS1005: ';' expected. 1498 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~~~~~~~ node_modules/@types/node/http2.d.ts:1498:56 - error TS1005: ';' expected. 1498 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~ node_modules/@types/node/http2.d.ts:1499:23 - error TS1005: ';' expected. 1499 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~~~~~~~ node_modules/@types/node/http2.d.ts:1499:86 - error TS1109: Expression expected. 1499 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~ node_modules/@types/node/http2.d.ts:1500:5 - error TS1109: Expression expected. 1500 > extends tls.Server, HTTP2ServerCommon { ~ node_modules/@types/node/http2.d.ts:1500:7 - error TS1109: Expression expected. 1500 > extends tls.Server, HTTP2ServerCommon { ~~~~~~~ node_modules/@types/node/http2.d.ts:1500:45 - error TS1005: ';' expected. 1500 > extends tls.Server, HTTP2ServerCommon { ~ node_modules/@types/node/http2.d.ts:1502:18 - error TS1005: ',' expected. 1502 event: "checkContinue", ~ node_modules/@types/node/http2.d.ts:1503:21 - error TS1005: ',' expected. 1503 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1503:107 - error TS1109: Expression expected. 1503 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1504:10 - error TS1005: ';' expected. 1504 ): this; ~ node_modules/@types/node/http2.d.ts:1506:18 - error TS1005: ',' expected. 1506 event: "request", ~ node_modules/@types/node/http2.d.ts:1507:21 - error TS1005: ',' expected. 1507 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1507:107 - error TS1109: Expression expected. 1507 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1508:10 - error TS1005: ';' expected. 1508 ): this; ~ node_modules/@types/node/http2.d.ts:1510:18 - error TS1005: ',' expected. 1510 event: "session", ~ node_modules/@types/node/http2.d.ts:1511:21 - error TS1005: ',' expected. 1511 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1511:118 - error TS1109: Expression expected. 1511 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1512:10 - error TS1005: ';' expected. 1512 ): this; ~ node_modules/@types/node/http2.d.ts:1513:26 - error TS1005: ',' expected. 1513 addListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1513:52 - error TS1005: ',' expected. 1513 addListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1513:74 - error TS1109: Expression expected. 1513 addListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1513:75 - error TS1005: ';' expected. 1513 addListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1515:18 - error TS1005: ',' expected. 1515 event: "stream", ~ node_modules/@types/node/http2.d.ts:1516:21 - error TS1005: ',' expected. 1516 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1516:103 - error TS1109: Expression expected. 1516 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1517:10 - error TS1005: ';' expected. 1517 ): this; ~ node_modules/@types/node/http2.d.ts:1518:26 - error TS1005: ',' expected. 1518 addListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1518:47 - error TS1005: ',' expected. 1518 addListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1518:59 - error TS1109: Expression expected. 1518 addListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1518:60 - error TS1005: ';' expected. 1518 addListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1519:26 - error TS1005: ',' expected. 1519 addListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1519:55 - error TS1005: ',' expected. 1519 addListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1519:88 - error TS1109: Expression expected. 1519 addListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1519:89 - error TS1005: ';' expected. 1519 addListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1520:26 - error TS1005: ',' expected. 1520 addListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1520:53 - error TS1005: ',' expected. 1520 addListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1520:79 - error TS1109: Expression expected. 1520 addListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1520:80 - error TS1005: ';' expected. 1520 addListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1522:18 - error TS1005: ',' expected. 1522 event: "checkContinue", ~ node_modules/@types/node/http2.d.ts:1523:20 - error TS1005: ',' expected. 1523 request: InstanceType<Http2Request>, ~ node_modules/@types/node/http2.d.ts:1523:48 - error TS1109: Expression expected. 1523 request: InstanceType<Http2Request>, ~ node_modules/@types/node/http2.d.ts:1524:21 - error TS1005: ',' expected. 1524 response: InstanceType<Http2Response>, ~ node_modules/@types/node/http2.d.ts:1524:50 - error TS1109: Expression expected. 1524 response: InstanceType<Http2Response>, ~ node_modules/@types/node/http2.d.ts:1525:10 - error TS1005: ';' expected. 1525 ): boolean; ~ node_modules/@types/node/http2.d.ts:1526:19 - error TS1005: ',' expected. 1526 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1526:39 - error TS1005: ',' expected. 1526 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1526:67 - error TS1109: Expression expected. 1526 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1526:77 - error TS1005: ',' expected. 1526 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1526:106 - error TS1005: '(' expected. 1526 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1526:107 - error TS1005: ',' expected. 1526 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1526:116 - error TS1005: ')' expected. 1526 emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean; ~ node_modules/@types/node/http2.d.ts:1528:18 - error TS1005: ',' expected. 1528 event: "session", ~ node_modules/@types/node/http2.d.ts:1529:20 - error TS1005: ',' expected. 1529 session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>, ~ node_modules/@types/node/http2.d.ts:1529:98 - error TS1109: Expression expected. 1529 session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>, ~ node_modules/@types/node/http2.d.ts:1530:10 - error TS1005: ';' expected. 1530 ): boolean; ~ node_modules/@types/node/http2.d.ts:1531:19 - error TS1005: ',' expected. 1531 emit(event: "sessionError", err: Error): boolean; ~ node_modules/@types/node/http2.d.ts:1531:40 - error TS1005: ',' expected. 1531 emit(event: "sessionError", err: Error): boolean; ~ node_modules/@types/node/http2.d.ts:1531:48 - error TS1005: ';' expected. 1531 emit(event: "sessionError", err: Error): boolean; ~ node_modules/@types/node/http2.d.ts:1532:19 - error TS1005: ',' expected. 1532 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1532:37 - error TS1005: ',' expected. 1532 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1532:65 - error TS1005: ',' expected. 1532 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1532:93 - error TS1005: ',' expected. 1532 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1532:102 - error TS1005: ';' expected. 1532 emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; ~ node_modules/@types/node/http2.d.ts:1533:19 - error TS1005: ',' expected. 1533 emit(event: "timeout"): boolean; ~ node_modules/@types/node/http2.d.ts:1533:31 - error TS1005: ';' expected. 1533 emit(event: "timeout"): boolean; ~ node_modules/@types/node/http2.d.ts:1534:19 - error TS1005: ',' expected. 1534 emit(event: "unknownProtocol", socket: tls.TLSSocket): boolean; ~ node_modules/@types/node/http2.d.ts:1534:46 - error TS1005: ',' expected. 1534 emit(event: "unknownProtocol", socket: tls.TLSSocket): boolean; ~ node_modules/@types/node/http2.d.ts:1534:62 - error TS1005: ';' expected. 1534 emit(event: "unknownProtocol", socket: tls.TLSSocket): boolean; ~ node_modules/@types/node/http2.d.ts:1535:19 - error TS1005: ',' expected. 1535 emit(event: string | symbol, ...args: any[]): boolean; ~ node_modules/@types/node/http2.d.ts:1535:45 - error TS1005: ',' expected. 1535 emit(event: string | symbol, ...args: any[]): boolean; ~ node_modules/@types/node/http2.d.ts:1535:51 - error TS1011: An element access expression should take an argument. 1535 emit(event: string | symbol, ...args: any[]): boolean; node_modules/@types/node/http2.d.ts:1535:53 - error TS1005: ';' expected. 1535 emit(event: string | symbol, ...args: any[]): boolean; ~ node_modules/@types/node/http2.d.ts:1537:18 - error TS1005: ',' expected. 1537 event: "checkContinue", ~ node_modules/@types/node/http2.d.ts:1538:21 - error TS1005: ',' expected. 1538 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1538:107 - error TS1109: Expression expected. 1538 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1539:10 - error TS1005: ';' expected. 1539 ): this; ~ node_modules/@types/node/http2.d.ts:1541:18 - error TS1005: ',' expected. 1541 event: "request", ~ node_modules/@types/node/http2.d.ts:1542:21 - error TS1005: ',' expected. 1542 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1542:107 - error TS1109: Expression expected. 1542 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1543:10 - error TS1005: ';' expected. 1543 ): this; ~ node_modules/@types/node/http2.d.ts:1545:18 - error TS1005: ',' expected. 1545 event: "session", ~ node_modules/@types/node/http2.d.ts:1546:21 - error TS1005: ',' expected. 1546 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1546:118 - error TS1109: Expression expected. 1546 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1547:10 - error TS1005: ';' expected. 1547 ): this; ~ node_modules/@types/node/http2.d.ts:1548:17 - error TS1005: ',' expected. 1548 on(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1548:43 - error TS1005: ',' expected. 1548 on(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1548:65 - error TS1109: Expression expected. 1548 on(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1548:66 - error TS1005: ';' expected. 1548 on(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1550:18 - error TS1005: ',' expected. 1550 event: "stream", ~ node_modules/@types/node/http2.d.ts:1551:21 - error TS1005: ',' expected. 1551 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1551:103 - error TS1109: Expression expected. 1551 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1552:10 - error TS1005: ';' expected. 1552 ): this; ~ node_modules/@types/node/http2.d.ts:1553:17 - error TS1005: ',' expected. 1553 on(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1553:38 - error TS1005: ',' expected. 1553 on(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1553:50 - error TS1109: Expression expected. 1553 on(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1553:51 - error TS1005: ';' expected. 1553 on(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1554:17 - error TS1005: ',' expected. 1554 on(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1554:46 - error TS1005: ',' expected. 1554 on(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1554:79 - error TS1109: Expression expected. 1554 on(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1554:80 - error TS1005: ';' expected. 1554 on(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1555:17 - error TS1005: ',' expected. 1555 on(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1555:44 - error TS1005: ',' expected. 1555 on(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1555:70 - error TS1109: Expression expected. 1555 on(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1555:71 - error TS1005: ';' expected. 1555 on(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1557:18 - error TS1005: ',' expected. 1557 event: "checkContinue", ~ node_modules/@types/node/http2.d.ts:1558:21 - error TS1005: ',' expected. 1558 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1558:107 - error TS1109: Expression expected. 1558 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1559:10 - error TS1005: ';' expected. 1559 ): this; ~ node_modules/@types/node/http2.d.ts:1561:18 - error TS1005: ',' expected. 1561 event: "request", ~ node_modules/@types/node/http2.d.ts:1562:21 - error TS1005: ',' expected. 1562 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1562:107 - error TS1109: Expression expected. 1562 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1563:10 - error TS1005: ';' expected. 1563 ): this; ~ node_modules/@types/node/http2.d.ts:1565:18 - error TS1005: ',' expected. 1565 event: "session", ~ node_modules/@types/node/http2.d.ts:1566:21 - error TS1005: ',' expected. 1566 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1566:118 - error TS1109: Expression expected. 1566 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1567:10 - error TS1005: ';' expected. 1567 ): this; ~ node_modules/@types/node/http2.d.ts:1568:19 - error TS1005: ',' expected. 1568 once(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1568:45 - error TS1005: ',' expected. 1568 once(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1568:67 - error TS1109: Expression expected. 1568 once(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1568:68 - error TS1005: ';' expected. 1568 once(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1570:18 - error TS1005: ',' expected. 1570 event: "stream", ~ node_modules/@types/node/http2.d.ts:1571:21 - error TS1005: ',' expected. 1571 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1571:103 - error TS1109: Expression expected. 1571 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1572:10 - error TS1005: ';' expected. 1572 ): this; ~ node_modules/@types/node/http2.d.ts:1573:19 - error TS1005: ',' expected. 1573 once(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1573:40 - error TS1005: ',' expected. 1573 once(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1573:52 - error TS1109: Expression expected. 1573 once(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1573:53 - error TS1005: ';' expected. 1573 once(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1574:19 - error TS1005: ',' expected. 1574 once(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1574:48 - error TS1005: ',' expected. 1574 once(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1574:81 - error TS1109: Expression expected. 1574 once(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1574:82 - error TS1005: ';' expected. 1574 once(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1575:19 - error TS1005: ',' expected. 1575 once(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1575:46 - error TS1005: ',' expected. 1575 once(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1575:72 - error TS1109: Expression expected. 1575 once(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1575:73 - error TS1005: ';' expected. 1575 once(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1577:18 - error TS1005: ',' expected. 1577 event: "checkContinue", ~ node_modules/@types/node/http2.d.ts:1578:21 - error TS1005: ',' expected. 1578 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1578:107 - error TS1109: Expression expected. 1578 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1579:10 - error TS1005: ';' expected. 1579 ): this; ~ node_modules/@types/node/http2.d.ts:1581:18 - error TS1005: ',' expected. 1581 event: "request", ~ node_modules/@types/node/http2.d.ts:1582:21 - error TS1005: ',' expected. 1582 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1582:107 - error TS1109: Expression expected. 1582 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1583:10 - error TS1005: ';' expected. 1583 ): this; ~ node_modules/@types/node/http2.d.ts:1585:18 - error TS1005: ',' expected. 1585 event: "session", ~ node_modules/@types/node/http2.d.ts:1586:21 - error TS1005: ',' expected. 1586 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1586:118 - error TS1109: Expression expected. 1586 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1587:10 - error TS1005: ';' expected. 1587 ): this; ~ node_modules/@types/node/http2.d.ts:1588:30 - error TS1005: ',' expected. 1588 prependListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1588:56 - error TS1005: ',' expected. 1588 prependListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1588:78 - error TS1109: Expression expected. 1588 prependListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1588:79 - error TS1005: ';' expected. 1588 prependListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1590:18 - error TS1005: ',' expected. 1590 event: "stream", ~ node_modules/@types/node/http2.d.ts:1591:21 - error TS1005: ',' expected. 1591 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1591:103 - error TS1109: Expression expected. 1591 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1592:10 - error TS1005: ';' expected. 1592 ): this; ~ node_modules/@types/node/http2.d.ts:1593:30 - error TS1005: ',' expected. 1593 prependListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1593:51 - error TS1005: ',' expected. 1593 prependListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1593:63 - error TS1109: Expression expected. 1593 prependListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1593:64 - error TS1005: ';' expected. 1593 prependListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1594:30 - error TS1005: ',' expected. 1594 prependListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1594:59 - error TS1005: ',' expected. 1594 prependListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1594:92 - error TS1109: Expression expected. 1594 prependListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1594:93 - error TS1005: ';' expected. 1594 prependListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1595:30 - error TS1005: ',' expected. 1595 prependListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1595:57 - error TS1005: ',' expected. 1595 prependListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1595:83 - error TS1109: Expression expected. 1595 prependListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1595:84 - error TS1005: ';' expected. 1595 prependListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1597:18 - error TS1005: ',' expected. 1597 event: "checkContinue", ~ node_modules/@types/node/http2.d.ts:1598:21 - error TS1005: ',' expected. 1598 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1598:107 - error TS1109: Expression expected. 1598 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1599:10 - error TS1005: ';' expected. 1599 ): this; ~ node_modules/@types/node/http2.d.ts:1601:18 - error TS1005: ',' expected. 1601 event: "request", ~ node_modules/@types/node/http2.d.ts:1602:21 - error TS1005: ',' expected. 1602 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1602:107 - error TS1109: Expression expected. 1602 listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1603:10 - error TS1005: ';' expected. 1603 ): this; ~ node_modules/@types/node/http2.d.ts:1605:18 - error TS1005: ',' expected. 1605 event: "session", ~ node_modules/@types/node/http2.d.ts:1606:21 - error TS1005: ',' expected. 1606 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1606:118 - error TS1109: Expression expected. 1606 listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:1607:10 - error TS1005: ';' expected. 1607 ): this; ~ node_modules/@types/node/http2.d.ts:1608:34 - error TS1005: ',' expected. 1608 prependOnceListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1608:60 - error TS1005: ',' expected. 1608 prependOnceListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1608:82 - error TS1109: Expression expected. 1608 prependOnceListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1608:83 - error TS1005: ';' expected. 1608 prependOnceListener(event: "sessionError", listener: (err: Error) => void): this; ~ node_modules/@types/node/http2.d.ts:1610:18 - error TS1005: ',' expected. 1610 event: "stream", ~ node_modules/@types/node/http2.d.ts:1611:21 - error TS1005: ',' expected. 1611 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1611:103 - error TS1109: Expression expected. 1611 listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void, ~ node_modules/@types/node/http2.d.ts:1612:10 - error TS1005: ';' expected. 1612 ): this; ~ node_modules/@types/node/http2.d.ts:1613:34 - error TS1005: ',' expected. 1613 prependOnceListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1613:55 - error TS1005: ',' expected. 1613 prependOnceListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1613:67 - error TS1109: Expression expected. 1613 prependOnceListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1613:68 - error TS1005: ';' expected. 1613 prependOnceListener(event: "timeout", listener: () => void): this; ~ node_modules/@types/node/http2.d.ts:1614:34 - error TS1005: ',' expected. 1614 prependOnceListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1614:63 - error TS1005: ',' expected. 1614 prependOnceListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1614:96 - error TS1109: Expression expected. 1614 prependOnceListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1614:97 - error TS1005: ';' expected. 1614 prependOnceListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/http2.d.ts:1615:34 - error TS1005: ',' expected. 1615 prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1615:61 - error TS1005: ',' expected. 1615 prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1615:87 - error TS1109: Expression expected. 1615 prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:1615:88 - error TS1005: ';' expected. 1615 prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/http2.d.ts:2554:52 - error TS1005: ',' expected. 2554 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:2554:81 - error TS1109: Expression expected. 2554 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:2555:22 - error TS1005: ';' expected. 2555 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~~~~~~~ node_modules/@types/node/http2.d.ts:2555:56 - error TS1005: ';' expected. 2555 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~ node_modules/@types/node/http2.d.ts:2556:23 - error TS1005: ';' expected. 2556 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~~~~~~~ node_modules/@types/node/http2.d.ts:2556:86 - error TS1109: Expression expected. 2556 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~ node_modules/@types/node/http2.d.ts:2557:5 - error TS1109: Expression expected. 2557 >( ~ node_modules/@types/node/http2.d.ts:2558:16 - error TS1005: ')' expected. 2558 options: ServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>, ~ node_modules/@types/node/http2.d.ts:2558:89 - error TS1109: Expression expected. 2558 options: ServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>, ~ node_modules/@types/node/http2.d.ts:2559:26 - error TS1109: Expression expected. 2559 onRequestHandler?: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:2559:112 - error TS1109: Expression expected. 2559 onRequestHandler?: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:2560:5 - error TS1109: Expression expected. 2560 ): Http2Server<Http1Request, Http1Response, Http2Request, Http2Response>; ~ node_modules/@types/node/http2.d.ts:2560:6 - error TS1128: Declaration or statement expected. 2560 ): Http2Server<Http1Request, Http1Response, Http2Request, Http2Response>; ~ node_modules/@types/node/http2.d.ts:2560:77 - error TS1005: '(' expected. 2560 ): Http2Server<Http1Request, Http1Response, Http2Request, Http2Response>; ~ node_modules/@types/node/http2.d.ts:2594:52 - error TS1005: ',' expected. 2594 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:2594:81 - error TS1109: Expression expected. 2594 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:2595:22 - error TS1005: ';' expected. 2595 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~~~~~~~ node_modules/@types/node/http2.d.ts:2595:56 - error TS1005: ';' expected. 2595 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~ node_modules/@types/node/http2.d.ts:2596:23 - error TS1005: ';' expected. 2596 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~~~~~~~ node_modules/@types/node/http2.d.ts:2596:86 - error TS1109: Expression expected. 2596 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~ node_modules/@types/node/http2.d.ts:2597:5 - error TS1109: Expression expected. 2597 >( ~ node_modules/@types/node/http2.d.ts:2598:16 - error TS1005: ')' expected. 2598 options: SecureServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>, ~ node_modules/@types/node/http2.d.ts:2598:95 - error TS1109: Expression expected. 2598 options: SecureServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>, ~ node_modules/@types/node/http2.d.ts:2599:26 - error TS1109: Expression expected. 2599 onRequestHandler?: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:2599:112 - error TS1109: Expression expected. 2599 onRequestHandler?: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void, ~ node_modules/@types/node/http2.d.ts:2600:5 - error TS1109: Expression expected. 2600 ): Http2SecureServer<Http1Request, Http1Response, Http2Request, Http2Response>; ~ node_modules/@types/node/http2.d.ts:2600:6 - error TS1128: Declaration or statement expected. 2600 ): Http2SecureServer<Http1Request, Http1Response, Http2Request, Http2Response>; ~ node_modules/@types/node/http2.d.ts:2600:83 - error TS1005: '(' expected. 2600 ): Http2SecureServer<Http1Request, Http1Response, Http2Request, Http2Response>; ~ node_modules/@types/node/http2.d.ts:2634:52 - error TS1005: ',' expected. 2634 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:2634:81 - error TS1109: Expression expected. 2634 Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse, ~ node_modules/@types/node/http2.d.ts:2635:22 - error TS1005: ';' expected. 2635 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~~~~~~~ node_modules/@types/node/http2.d.ts:2635:56 - error TS1005: ';' expected. 2635 Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest, ~ node_modules/@types/node/http2.d.ts:2636:23 - error TS1005: ';' expected. 2636 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~~~~~~~ node_modules/@types/node/http2.d.ts:2636:86 - error TS1109: Expression expected. 2636 Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse, ~ node_modules/@types/node/http2.d.ts:2637:5 - error TS1109: Expression expected. 2637 >( ~ node_modules/@types/node/http2.d.ts:2638:15 - error TS1005: ')' expected. 2638 socket: stream.Duplex, ~ node_modules/@types/node/http2.d.ts:2639:17 - error TS1109: Expression expected. 2639 options?: ServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>, ~ node_modules/@types/node/http2.d.ts:2639:90 - error TS1109: Expression expected. 2639 options?: ServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>, ~ node_modules/@types/node/http2.d.ts:2640:5 - error TS1109: Expression expected. 2640 ): ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>; ~ node_modules/@types/node/http2.d.ts:2640:6 - error TS1128: Declaration or statement expected. 2640 ): ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>; ~ node_modules/@types/node/http2.d.ts:2640:84 - error TS1005: '(' expected. 2640 ): ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>; ~ node_modules/@types/node/https.d.ts:14:52 - error TS1005: ',' expected. 14 Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse, ~ node_modules/@types/node/https.d.ts:14:76 - error TS1109: Expression expected. 14 Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse, ~ node_modules/@types/node/https.d.ts:15:5 - error TS1109: Expression expected. 15 > extends http.ServerOptions<Request, Response>, tls.TlsOptions {} ~ node_modules/@types/node/https.d.ts:15:7 - error TS1109: Expression expected. 15 > extends http.ServerOptions<Request, Response>, tls.TlsOptions {} ~~~~~~~ node_modules/@types/node/https.d.ts:15:52 - error TS1109: Expression expected. 15 > extends http.ServerOptions<Request, Response>, tls.TlsOptions {} ~ node_modules/@types/node/https.d.ts:15:69 - error TS1005: ';' expected. 15 > extends http.ServerOptions<Request, Response>, tls.TlsOptions {} ~ node_modules/@types/node/https.d.ts:41:52 - error TS1005: ',' expected. 41 Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse, ~ node_modules/@types/node/https.d.ts:41:76 - error TS1109: Expression expected. 41 Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse, ~ node_modules/@types/node/https.d.ts:42:5 - error TS1109: Expression expected. 42 > extends http.Server<Request, Response> {} ~ node_modules/@types/node/https.d.ts:42:7 - error TS1109: Expression expected. 42 > extends http.Server<Request, Response> {} ~~~~~~~ node_modules/@types/node/https.d.ts:49:52 - error TS1005: ',' expected. 49 Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse, ~ node_modules/@types/node/https.d.ts:49:76 - error TS1109: Expression expected. 49 Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse, ~ node_modules/@types/node/https.d.ts:50:5 - error TS1109: Expression expected. 50 > extends tls.Server { ~ node_modules/@types/node/https.d.ts:50:7 - error TS1109: Expression expected. 50 > extends tls.Server { ~~~~~~~ node_modules/@types/node/https.d.ts:50:26 - error TS1005: ';' expected. 50 > extends tls.Server { ~ node_modules/@types/node/https.d.ts:51:37 - error TS1109: Expression expected. 51 constructor(requestListener?: http.RequestListener<Request, Response>); ~ node_modules/@types/node/https.d.ts:51:78 - error TS1005: '(' expected. 51 constructor(requestListener?: http.RequestListener<Request, Response>); ~ node_modules/@types/node/https.d.ts:51:79 - error TS1005: ')' expected. 51 constructor(requestListener?: http.RequestListener<Request, Response>); ~ node_modules/@types/node/https.d.ts:53:20 - error TS1005: ',' expected. 53 options: ServerOptions<Request, Response>, ~ node_modules/@types/node/https.d.ts:53:54 - error TS1109: Expression expected. 53 options: ServerOptions<Request, Response>, ~ node_modules/@types/node/https.d.ts:54:29 - error TS1109: Expression expected. 54 requestListener?: http.RequestListener<Request, Response>, ~ node_modules/@types/node/https.d.ts:54:70 - error TS1109: Expression expected. 54 requestListener?: http.RequestListener<Request, Response>, ~ node_modules/@types/node/https.d.ts:60:30 - error TS1005: ';' expected. 60 closeAllConnections(): void; ~ node_modules/@types/node/https.d.ts:60:36 - error TS1109: Expression expected. 60 closeAllConnections(): void; ~ node_modules/@types/node/https.d.ts:65:31 - error TS1005: ';' expected. 65 closeIdleConnections(): void; ~ node_modules/@types/node/https.d.ts:65:37 - error TS1109: Expression expected. 65 closeIdleConnections(): void; ~ node_modules/@types/node/https.d.ts:66:26 - error TS1005: ',' expected. 66 addListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:66:44 - error TS1005: ',' expected. 66 addListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:66:70 - error TS1109: Expression expected. 66 addListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:66:71 - error TS1005: ';' expected. 66 addListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:67:26 - error TS1005: ',' expected. 67 addListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:67:46 - error TS1005: ',' expected. 67 addListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:67:105 - error TS1109: Expression expected. 67 addListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:67:106 - error TS1005: ';' expected. 67 addListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:69:18 - error TS1005: ',' expected. 69 event: "newSession", ~ node_modules/@types/node/https.d.ts:70:21 - error TS1005: ',' expected. 70 listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void, ~ node_modules/@types/node/https.d.ts:70:111 - error TS1109: Expression expected. 70 listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void, ~ node_modules/@types/node/https.d.ts:71:10 - error TS1005: ';' expected. 71 ): this; ~ node_modules/@types/node/https.d.ts:73:18 - error TS1005: ',' expected. 73 event: "OCSPRequest", ~ node_modules/@types/node/https.d.ts:74:21 - error TS1005: ',' expected. 74 listener: ( ~ node_modules/@types/node/https.d.ts:78:22 - error TS1109: Expression expected. 78 ) => void, ~ node_modules/@types/node/https.d.ts:79:10 - error TS1005: ';' expected. 79 ): this; ~ node_modules/@types/node/https.d.ts:81:18 - error TS1005: ',' expected. 81 event: "resumeSession", ~ node_modules/@types/node/https.d.ts:82:21 - error TS1005: ',' expected. 82 listener: ( ~ node_modules/@types/node/https.d.ts:85:22 - error TS1109: Expression expected. 85 ) => void, ~ node_modules/@types/node/https.d.ts:86:10 - error TS1005: ';' expected. 86 ): this; ~ node_modules/@types/node/https.d.ts:87:26 - error TS1005: ',' expected. 87 addListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:87:56 - error TS1005: ',' expected. 87 addListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:87:92 - error TS1109: Expression expected. 87 addListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:87:93 - error TS1005: ';' expected. 87 addListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:88:26 - error TS1005: ',' expected. 88 addListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:88:54 - error TS1005: ',' expected. 88 addListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:88:102 - error TS1109: Expression expected. 88 addListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:88:103 - error TS1005: ';' expected. 88 addListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:89:26 - error TS1005: ',' expected. 89 addListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:89:45 - error TS1005: ',' expected. 89 addListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:89:57 - error TS1109: Expression expected. 89 addListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:89:58 - error TS1005: ';' expected. 89 addListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:90:26 - error TS1005: ',' expected. 90 addListener(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:90:50 - error TS1005: ',' expected. 90 addListener(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:90:76 - error TS1109: Expression expected. 90 addListener(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:90:77 - error TS1005: ';' expected. 90 addListener(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:91:26 - error TS1005: ',' expected. 91 addListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:91:45 - error TS1005: ',' expected. 91 addListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:91:67 - error TS1109: Expression expected. 91 addListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:91:68 - error TS1005: ';' expected. 91 addListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:92:26 - error TS1005: ',' expected. 92 addListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:92:49 - error TS1005: ',' expected. 92 addListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:92:61 - error TS1109: Expression expected. 92 addListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:92:62 - error TS1005: ';' expected. 92 addListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:93:26 - error TS1005: ',' expected. 93 addListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:93:53 - error TS1005: ',' expected. 93 addListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:93:94 - error TS1005: '(' expected. 93 addListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:93:95 - error TS1005: ',' expected. 93 addListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:93:101 - error TS1005: ')' expected. 93 addListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:94:26 - error TS1005: ',' expected. 94 addListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:94:56 - error TS1005: ',' expected. 94 addListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:94:97 - error TS1005: '(' expected. 94 addListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:94:98 - error TS1005: ',' expected. 94 addListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:94:104 - error TS1005: ')' expected. 94 addListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:95:26 - error TS1005: ',' expected. 95 addListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:95:51 - error TS1005: ',' expected. 95 addListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:95:89 - error TS1109: Expression expected. 95 addListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:95:90 - error TS1005: ';' expected. 95 addListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:97:18 - error TS1005: ',' expected. 97 event: "connect", ~ node_modules/@types/node/https.d.ts:98:21 - error TS1005: ',' expected. 98 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:98:98 - error TS1109: Expression expected. 98 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:99:10 - error TS1005: ';' expected. 99 ): this; ~ node_modules/@types/node/https.d.ts:100:26 - error TS1005: ',' expected. 100 addListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:100:47 - error TS1005: ',' expected. 100 addListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:100:88 - error TS1005: '(' expected. 100 addListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:100:89 - error TS1005: ',' expected. 100 addListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:100:95 - error TS1005: ')' expected. 100 addListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:102:18 - error TS1005: ',' expected. 102 event: "upgrade", ~ node_modules/@types/node/https.d.ts:103:21 - error TS1005: ',' expected. 103 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:103:98 - error TS1109: Expression expected. 103 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:104:10 - error TS1005: ';' expected. 104 ): this; ~ node_modules/@types/node/https.d.ts:105:19 - error TS1005: ',' expected. 105 emit(event: string, ...args: any[]): boolean; ~ node_modules/@types/node/https.d.ts:105:36 - error TS1005: ',' expected. 105 emit(event: string, ...args: any[]): boolean; ~ node_modules/@types/node/https.d.ts:105:42 - error TS1011: An element access expression should take an argument. 105 emit(event: string, ...args: any[]): boolean; node_modules/@types/node/https.d.ts:105:44 - error TS1005: ';' expected. 105 emit(event: string, ...args: any[]): boolean; ~ node_modules/@types/node/https.d.ts:106:19 - error TS1005: ',' expected. 106 emit(event: "keylog", line: NonSharedBuffer, tlsSocket: tls.TLSSocket): boolean; ~ node_modules/@types/node/https.d.ts:106:35 - error TS1005: ',' expected. 106 emit(event: "keylog", line: NonSharedBuffer, tlsSocket: tls.TLSSocket): boolean; ~ node_modules/@types/node/https.d.ts:106:63 - error TS1005: ',' expected. 106 emit(event: "keylog", line: NonSharedBuffer, tlsSocket: tls.TLSSocket): boolean; ~ node_modules/@types/node/https.d.ts:106:79 - error TS1005: ';' expected. 106 emit(event: "keylog", line: NonSharedBuffer, tlsSocket: tls.TLSSocket): boolean; ~ node_modules/@types/node/https.d.ts:108:18 - error TS1005: ',' expected. 108 event: "newSession", ~ node_modules/@types/node/https.d.ts:109:22 - error TS1005: ',' expected. 109 sessionId: NonSharedBuffer, ~ node_modules/@types/node/https.d.ts:110:24 - error TS1005: ',' expected. 110 sessionData: NonSharedBuffer, ~ node_modules/@types/node/https.d.ts:111:21 - error TS1005: ',' expected. 111 callback: () => void, ~ node_modules/@types/node/https.d.ts:111:33 - error TS1109: Expression expected. 111 callback: () => void, ~ node_modules/@types/node/https.d.ts:112:10 - error TS1005: ';' expected. 112 ): boolean; ~ node_modules/@types/node/https.d.ts:114:18 - error TS1005: ',' expected. 114 event: "OCSPRequest", ~ node_modules/@types/node/https.d.ts:115:24 - error TS1005: ',' expected. 115 certificate: NonSharedBuffer, ~ node_modules/@types/node/https.d.ts:116:19 - error TS1005: ',' expected. 116 issuer: NonSharedBuffer, ~ node_modules/@types/node/https.d.ts:117:21 - error TS1005: ',' expected. 117 callback: (err: Error | null, resp: Buffer | null) => void, ~ node_modules/@types/node/https.d.ts:117:71 - error TS1109: Expression expected. 117 callback: (err: Error | null, resp: Buffer | null) => void, ~ node_modules/@types/node/https.d.ts:118:10 - error TS1005: ';' expected. 118 ): boolean; ~ node_modules/@types/node/https.d.ts:120:18 - error TS1005: ',' expected. 120 event: "resumeSession", ~ node_modules/@types/node/https.d.ts:121:22 - error TS1005: ',' expected. 121 sessionId: NonSharedBuffer, ~ node_modules/@types/node/https.d.ts:122:21 - error TS1005: ',' expected. 122 callback: (err: Error | null, sessionData: Buffer | null) => void, ~ node_modules/@types/node/https.d.ts:122:78 - error TS1109: Expression expected. 122 callback: (err: Error | null, sessionData: Buffer | null) => void, ~ node_modules/@types/node/https.d.ts:123:10 - error TS1005: ';' expected. 123 ): boolean; ~ node_modules/@types/node/https.d.ts:124:19 - error TS1005: ',' expected. 124 emit(event: "secureConnection", tlsSocket: tls.TLSSocket): boolean; ~ node_modules/@types/node/https.d.ts:124:50 - error TS1005: ',' expected. 124 emit(event: "secureConnection", tlsSocket: tls.TLSSocket): boolean; ~ node_modules/@types/node/https.d.ts:124:66 - error TS1005: ';' expected. 124 emit(event: "secureConnection", tlsSocket: tls.TLSSocket): boolean; ~ node_modules/@types/node/https.d.ts:125:19 - error TS1005: ',' expected. 125 emit(event: "tlsClientError", err: Error, tlsSocket: tls.TLSSocket): boolean; ~ node_modules/@types/node/https.d.ts:125:42 - error TS1005: ',' expected. 125 emit(event: "tlsClientError", err: Error, tlsSocket: tls.TLSSocket): boolean; ~ node_modules/@types/node/https.d.ts:125:60 - error TS1005: ',' expected. 125 emit(event: "tlsClientError", err: Error, tlsSocket: tls.TLSSocket): boolean; ~ node_modules/@types/node/https.d.ts:125:76 - error TS1005: ';' expected. 125 emit(event: "tlsClientError", err: Error, tlsSocket: tls.TLSSocket): boolean; ~ node_modules/@types/node/https.d.ts:126:19 - error TS1005: ',' expected. 126 emit(event: "close"): boolean; ~ node_modules/@types/node/https.d.ts:126:29 - error TS1005: ';' expected. 126 emit(event: "close"): boolean; ~ node_modules/@types/node/https.d.ts:127:19 - error TS1005: ',' expected. 127 emit(event: "connection", socket: Duplex): boolean; ~ node_modules/@types/node/https.d.ts:127:41 - error TS1005: ',' expected. 127 emit(event: "connection", socket: Duplex): boolean; ~ node_modules/@types/node/https.d.ts:127:50 - error TS1005: ';' expected. 127 emit(event: "connection", socket: Duplex): boolean; ~ node_modules/@types/node/https.d.ts:128:19 - error TS1005: ',' expected. 128 emit(event: "error", err: Error): boolean; ~ node_modules/@types/node/https.d.ts:128:33 - error TS1005: ',' expected. 128 emit(event: "error", err: Error): boolean; ~ node_modules/@types/node/https.d.ts:128:41 - error TS1005: ';' expected. 128 emit(event: "error", err: Error): boolean; ~ node_modules/@types/node/https.d.ts:129:19 - error TS1005: ',' expected. 129 emit(event: "listening"): boolean; ~ node_modules/@types/node/https.d.ts:129:33 - error TS1005: ';' expected. 129 emit(event: "listening"): boolean; ~ node_modules/@types/node/https.d.ts:131:18 - error TS1005: ',' expected. 131 event: "checkContinue", ~ node_modules/@types/node/https.d.ts:132:16 - error TS1005: ',' expected. 132 req: InstanceType<Request>, ~ node_modules/@types/node/https.d.ts:132:39 - error TS1109: Expression expected. 132 req: InstanceType<Request>, ~ node_modules/@types/node/https.d.ts:133:16 - error TS1005: ',' expected. 133 res: InstanceType<Response>, ~ node_modules/@types/node/https.d.ts:133:40 - error TS1109: Expression expected. 133 res: InstanceType<Response>, ~ node_modules/@types/node/https.d.ts:134:10 - error TS1005: ';' expected. 134 ): boolean; ~ node_modules/@types/node/https.d.ts:136:18 - error TS1005: ',' expected. 136 event: "checkExpectation", ~ node_modules/@types/node/https.d.ts:137:16 - error TS1005: ',' expected. 137 req: InstanceType<Request>, ~ node_modules/@types/node/https.d.ts:137:39 - error TS1109: Expression expected. 137 req: InstanceType<Request>, ~ node_modules/@types/node/https.d.ts:138:16 - error TS1005: ',' expected. 138 res: InstanceType<Response>, ~ node_modules/@types/node/https.d.ts:138:40 - error TS1109: Expression expected. 138 res: InstanceType<Response>, ~ node_modules/@types/node/https.d.ts:139:10 - error TS1005: ';' expected. 139 ): boolean; ~ node_modules/@types/node/https.d.ts:140:19 - error TS1005: ',' expected. 140 emit(event: "clientError", err: Error, socket: Duplex): boolean; ~ node_modules/@types/node/https.d.ts:140:39 - error TS1005: ',' expected. 140 emit(event: "clientError", err: Error, socket: Duplex): boolean; ~ node_modules/@types/node/https.d.ts:140:54 - error TS1005: ',' expected. 140 emit(event: "clientError", err: Error, socket: Duplex): boolean; ~ node_modules/@types/node/https.d.ts:140:63 - error TS1005: ';' expected. 140 emit(event: "clientError", err: Error, socket: Duplex): boolean; ~ node_modules/@types/node/https.d.ts:141:19 - error TS1005: ',' expected. 141 emit(event: "connect", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/https.d.ts:141:35 - error TS1005: ',' expected. 141 emit(event: "connect", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/https.d.ts:141:58 - error TS1109: Expression expected. 141 emit(event: "connect", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/https.d.ts:141:66 - error TS1005: ',' expected. 141 emit(event: "connect", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/https.d.ts:141:80 - error TS1005: ',' expected. 141 emit(event: "connect", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/https.d.ts:141:98 - error TS1005: ';' expected. 141 emit(event: "connect", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/https.d.ts:143:18 - error TS1005: ',' expected. 143 event: "request", ~ node_modules/@types/node/https.d.ts:144:16 - error TS1005: ',' expected. 144 req: InstanceType<Request>, ~ node_modules/@types/node/https.d.ts:144:39 - error TS1109: Expression expected. 144 req: InstanceType<Request>, ~ node_modules/@types/node/https.d.ts:145:16 - error TS1005: ',' expected. 145 res: InstanceType<Response>, ~ node_modules/@types/node/https.d.ts:145:40 - error TS1109: Expression expected. 145 res: InstanceType<Response>, ~ node_modules/@types/node/https.d.ts:146:10 - error TS1005: ';' expected. 146 ): boolean; ~ node_modules/@types/node/https.d.ts:147:19 - error TS1005: ',' expected. 147 emit(event: "upgrade", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/https.d.ts:147:35 - error TS1005: ',' expected. 147 emit(event: "upgrade", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/https.d.ts:147:58 - error TS1109: Expression expected. 147 emit(event: "upgrade", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/https.d.ts:147:66 - error TS1005: ',' expected. 147 emit(event: "upgrade", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/https.d.ts:147:80 - error TS1005: ',' expected. 147 emit(event: "upgrade", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/https.d.ts:147:98 - error TS1005: ';' expected. 147 emit(event: "upgrade", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean; ~ node_modules/@types/node/https.d.ts:148:17 - error TS1005: ',' expected. 148 on(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:148:35 - error TS1005: ',' expected. 148 on(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:148:61 - error TS1109: Expression expected. 148 on(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:148:62 - error TS1005: ';' expected. 148 on(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:149:17 - error TS1005: ',' expected. 149 on(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:149:37 - error TS1005: ',' expected. 149 on(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:149:96 - error TS1109: Expression expected. 149 on(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:149:97 - error TS1005: ';' expected. 149 on(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:151:18 - error TS1005: ',' expected. 151 event: "newSession", ~ node_modules/@types/node/https.d.ts:152:21 - error TS1005: ',' expected. 152 listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void, ~ node_modules/@types/node/https.d.ts:152:111 - error TS1109: Expression expected. 152 listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void, ~ node_modules/@types/node/https.d.ts:153:10 - error TS1005: ';' expected. 153 ): this; ~ node_modules/@types/node/https.d.ts:155:18 - error TS1005: ',' expected. 155 event: "OCSPRequest", ~ node_modules/@types/node/https.d.ts:156:21 - error TS1005: ',' expected. 156 listener: ( ~ node_modules/@types/node/https.d.ts:160:22 - error TS1109: Expression expected. 160 ) => void, ~ node_modules/@types/node/https.d.ts:161:10 - error TS1005: ';' expected. 161 ): this; ~ node_modules/@types/node/https.d.ts:163:18 - error TS1005: ',' expected. 163 event: "resumeSession", ~ node_modules/@types/node/https.d.ts:164:21 - error TS1005: ',' expected. 164 listener: ( ~ node_modules/@types/node/https.d.ts:167:22 - error TS1109: Expression expected. 167 ) => void, ~ node_modules/@types/node/https.d.ts:168:10 - error TS1005: ';' expected. 168 ): this; ~ node_modules/@types/node/https.d.ts:169:17 - error TS1005: ',' expected. 169 on(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:169:47 - error TS1005: ',' expected. 169 on(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:169:83 - error TS1109: Expression expected. 169 on(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:169:84 - error TS1005: ';' expected. 169 on(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:170:17 - error TS1005: ',' expected. 170 on(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:170:45 - error TS1005: ',' expected. 170 on(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:170:93 - error TS1109: Expression expected. 170 on(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:170:94 - error TS1005: ';' expected. 170 on(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:171:17 - error TS1005: ',' expected. 171 on(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:171:36 - error TS1005: ',' expected. 171 on(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:171:48 - error TS1109: Expression expected. 171 on(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:171:49 - error TS1005: ';' expected. 171 on(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:172:17 - error TS1005: ',' expected. 172 on(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:172:41 - error TS1005: ',' expected. 172 on(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:172:67 - error TS1109: Expression expected. 172 on(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:172:68 - error TS1005: ';' expected. 172 on(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:173:17 - error TS1005: ',' expected. 173 on(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:173:36 - error TS1005: ',' expected. 173 on(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:173:58 - error TS1109: Expression expected. 173 on(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:173:59 - error TS1005: ';' expected. 173 on(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:174:17 - error TS1005: ',' expected. 174 on(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:174:40 - error TS1005: ',' expected. 174 on(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:174:52 - error TS1109: Expression expected. 174 on(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:174:53 - error TS1005: ';' expected. 174 on(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:175:17 - error TS1005: ',' expected. 175 on(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:175:44 - error TS1005: ',' expected. 175 on(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:175:85 - error TS1005: '(' expected. 175 on(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:175:86 - error TS1005: ',' expected. 175 on(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:175:92 - error TS1005: ')' expected. 175 on(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:176:17 - error TS1005: ',' expected. 176 on(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:176:47 - error TS1005: ',' expected. 176 on(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:176:88 - error TS1005: '(' expected. 176 on(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:176:89 - error TS1005: ',' expected. 176 on(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:176:95 - error TS1005: ')' expected. 176 on(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:177:17 - error TS1005: ',' expected. 177 on(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:177:42 - error TS1005: ',' expected. 177 on(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:177:80 - error TS1109: Expression expected. 177 on(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:177:81 - error TS1005: ';' expected. 177 on(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:179:18 - error TS1005: ',' expected. 179 event: "connect", ~ node_modules/@types/node/https.d.ts:180:21 - error TS1005: ',' expected. 180 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:180:98 - error TS1109: Expression expected. 180 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:181:10 - error TS1005: ';' expected. 181 ): this; ~ node_modules/@types/node/https.d.ts:182:17 - error TS1005: ',' expected. 182 on(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:182:38 - error TS1005: ',' expected. 182 on(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:182:79 - error TS1005: '(' expected. 182 on(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:182:80 - error TS1005: ',' expected. 182 on(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:182:86 - error TS1005: ')' expected. 182 on(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:184:18 - error TS1005: ',' expected. 184 event: "upgrade", ~ node_modules/@types/node/https.d.ts:185:21 - error TS1005: ',' expected. 185 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:185:98 - error TS1109: Expression expected. 185 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:186:10 - error TS1005: ';' expected. 186 ): this; ~ node_modules/@types/node/https.d.ts:187:19 - error TS1005: ',' expected. 187 once(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:187:37 - error TS1005: ',' expected. 187 once(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:187:63 - error TS1109: Expression expected. 187 once(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:187:64 - error TS1005: ';' expected. 187 once(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:188:19 - error TS1005: ',' expected. 188 once(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:188:39 - error TS1005: ',' expected. 188 once(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:188:98 - error TS1109: Expression expected. 188 once(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:188:99 - error TS1005: ';' expected. 188 once(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:190:18 - error TS1005: ',' expected. 190 event: "newSession", ~ node_modules/@types/node/https.d.ts:191:21 - error TS1005: ',' expected. 191 listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void, ~ node_modules/@types/node/https.d.ts:191:111 - error TS1109: Expression expected. 191 listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void, ~ node_modules/@types/node/https.d.ts:192:10 - error TS1005: ';' expected. 192 ): this; ~ node_modules/@types/node/https.d.ts:194:18 - error TS1005: ',' expected. 194 event: "OCSPRequest", ~ node_modules/@types/node/https.d.ts:195:21 - error TS1005: ',' expected. 195 listener: ( ~ node_modules/@types/node/https.d.ts:199:22 - error TS1109: Expression expected. 199 ) => void, ~ node_modules/@types/node/https.d.ts:200:10 - error TS1005: ';' expected. 200 ): this; ~ node_modules/@types/node/https.d.ts:202:18 - error TS1005: ',' expected. 202 event: "resumeSession", ~ node_modules/@types/node/https.d.ts:203:21 - error TS1005: ',' expected. 203 listener: ( ~ node_modules/@types/node/https.d.ts:206:22 - error TS1109: Expression expected. 206 ) => void, ~ node_modules/@types/node/https.d.ts:207:10 - error TS1005: ';' expected. 207 ): this; ~ node_modules/@types/node/https.d.ts:208:19 - error TS1005: ',' expected. 208 once(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:208:49 - error TS1005: ',' expected. 208 once(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:208:85 - error TS1109: Expression expected. 208 once(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:208:86 - error TS1005: ';' expected. 208 once(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:209:19 - error TS1005: ',' expected. 209 once(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:209:47 - error TS1005: ',' expected. 209 once(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:209:95 - error TS1109: Expression expected. 209 once(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:209:96 - error TS1005: ';' expected. 209 once(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:210:19 - error TS1005: ',' expected. 210 once(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:210:38 - error TS1005: ',' expected. 210 once(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:210:50 - error TS1109: Expression expected. 210 once(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:210:51 - error TS1005: ';' expected. 210 once(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:211:19 - error TS1005: ',' expected. 211 once(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:211:43 - error TS1005: ',' expected. 211 once(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:211:69 - error TS1109: Expression expected. 211 once(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:211:70 - error TS1005: ';' expected. 211 once(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:212:19 - error TS1005: ',' expected. 212 once(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:212:38 - error TS1005: ',' expected. 212 once(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:212:60 - error TS1109: Expression expected. 212 once(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:212:61 - error TS1005: ';' expected. 212 once(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:213:19 - error TS1005: ',' expected. 213 once(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:213:42 - error TS1005: ',' expected. 213 once(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:213:54 - error TS1109: Expression expected. 213 once(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:213:55 - error TS1005: ';' expected. 213 once(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:214:19 - error TS1005: ',' expected. 214 once(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:214:46 - error TS1005: ',' expected. 214 once(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:214:87 - error TS1005: '(' expected. 214 once(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:214:88 - error TS1005: ',' expected. 214 once(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:214:94 - error TS1005: ')' expected. 214 once(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:215:19 - error TS1005: ',' expected. 215 once(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:215:49 - error TS1005: ',' expected. 215 once(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:215:90 - error TS1005: '(' expected. 215 once(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:215:91 - error TS1005: ',' expected. 215 once(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:215:97 - error TS1005: ')' expected. 215 once(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:216:19 - error TS1005: ',' expected. 216 once(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:216:44 - error TS1005: ',' expected. 216 once(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:216:82 - error TS1109: Expression expected. 216 once(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:216:83 - error TS1005: ';' expected. 216 once(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:218:18 - error TS1005: ',' expected. 218 event: "connect", ~ node_modules/@types/node/https.d.ts:219:21 - error TS1005: ',' expected. 219 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:219:98 - error TS1109: Expression expected. 219 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:220:10 - error TS1005: ';' expected. 220 ): this; ~ node_modules/@types/node/https.d.ts:221:19 - error TS1005: ',' expected. 221 once(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:221:40 - error TS1005: ',' expected. 221 once(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:221:81 - error TS1005: '(' expected. 221 once(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:221:82 - error TS1005: ',' expected. 221 once(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:221:88 - error TS1005: ')' expected. 221 once(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:223:18 - error TS1005: ',' expected. 223 event: "upgrade", ~ node_modules/@types/node/https.d.ts:224:21 - error TS1005: ',' expected. 224 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:224:98 - error TS1109: Expression expected. 224 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:225:10 - error TS1005: ';' expected. 225 ): this; ~ node_modules/@types/node/https.d.ts:226:30 - error TS1005: ',' expected. 226 prependListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:226:48 - error TS1005: ',' expected. 226 prependListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:226:74 - error TS1109: Expression expected. 226 prependListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:226:75 - error TS1005: ';' expected. 226 prependListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:227:30 - error TS1005: ',' expected. 227 prependListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:227:50 - error TS1005: ',' expected. 227 prependListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:227:109 - error TS1109: Expression expected. 227 prependListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:227:110 - error TS1005: ';' expected. 227 prependListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:229:18 - error TS1005: ',' expected. 229 event: "newSession", ~ node_modules/@types/node/https.d.ts:230:21 - error TS1005: ',' expected. 230 listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void, ~ node_modules/@types/node/https.d.ts:230:111 - error TS1109: Expression expected. 230 listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void, ~ node_modules/@types/node/https.d.ts:231:10 - error TS1005: ';' expected. 231 ): this; ~ node_modules/@types/node/https.d.ts:233:18 - error TS1005: ',' expected. 233 event: "OCSPRequest", ~ node_modules/@types/node/https.d.ts:234:21 - error TS1005: ',' expected. 234 listener: ( ~ node_modules/@types/node/https.d.ts:238:22 - error TS1109: Expression expected. 238 ) => void, ~ node_modules/@types/node/https.d.ts:239:10 - error TS1005: ';' expected. 239 ): this; ~ node_modules/@types/node/https.d.ts:241:18 - error TS1005: ',' expected. 241 event: "resumeSession", ~ node_modules/@types/node/https.d.ts:242:21 - error TS1005: ',' expected. 242 listener: ( ~ node_modules/@types/node/https.d.ts:245:22 - error TS1109: Expression expected. 245 ) => void, ~ node_modules/@types/node/https.d.ts:246:10 - error TS1005: ';' expected. 246 ): this; ~ node_modules/@types/node/https.d.ts:247:30 - error TS1005: ',' expected. 247 prependListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:247:60 - error TS1005: ',' expected. 247 prependListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:247:96 - error TS1109: Expression expected. 247 prependListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:247:97 - error TS1005: ';' expected. 247 prependListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:248:30 - error TS1005: ',' expected. 248 prependListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:248:58 - error TS1005: ',' expected. 248 prependListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:248:106 - error TS1109: Expression expected. 248 prependListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:248:107 - error TS1005: ';' expected. 248 prependListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:249:30 - error TS1005: ',' expected. 249 prependListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:249:49 - error TS1005: ',' expected. 249 prependListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:249:61 - error TS1109: Expression expected. 249 prependListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:249:62 - error TS1005: ';' expected. 249 prependListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:250:30 - error TS1005: ',' expected. 250 prependListener(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:250:54 - error TS1005: ',' expected. 250 prependListener(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:250:80 - error TS1109: Expression expected. 250 prependListener(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:250:81 - error TS1005: ';' expected. 250 prependListener(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:251:30 - error TS1005: ',' expected. 251 prependListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:251:49 - error TS1005: ',' expected. 251 prependListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:251:71 - error TS1109: Expression expected. 251 prependListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:251:72 - error TS1005: ';' expected. 251 prependListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:252:30 - error TS1005: ',' expected. 252 prependListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:252:53 - error TS1005: ',' expected. 252 prependListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:252:65 - error TS1109: Expression expected. 252 prependListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:252:66 - error TS1005: ';' expected. 252 prependListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:253:30 - error TS1005: ',' expected. 253 prependListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:253:57 - error TS1005: ',' expected. 253 prependListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:253:98 - error TS1005: '(' expected. 253 prependListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:253:99 - error TS1005: ',' expected. 253 prependListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:253:105 - error TS1005: ')' expected. 253 prependListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:254:30 - error TS1005: ',' expected. 254 prependListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:254:60 - error TS1005: ',' expected. 254 prependListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:254:101 - error TS1005: '(' expected. 254 prependListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:254:102 - error TS1005: ',' expected. 254 prependListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:254:108 - error TS1005: ')' expected. 254 prependListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:255:30 - error TS1005: ',' expected. 255 prependListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:255:55 - error TS1005: ',' expected. 255 prependListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:255:93 - error TS1109: Expression expected. 255 prependListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:255:94 - error TS1005: ';' expected. 255 prependListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:257:18 - error TS1005: ',' expected. 257 event: "connect", ~ node_modules/@types/node/https.d.ts:258:21 - error TS1005: ',' expected. 258 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:258:98 - error TS1109: Expression expected. 258 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:259:10 - error TS1005: ';' expected. 259 ): this; ~ node_modules/@types/node/https.d.ts:260:30 - error TS1005: ',' expected. 260 prependListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:260:51 - error TS1005: ',' expected. 260 prependListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:260:92 - error TS1005: '(' expected. 260 prependListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:260:93 - error TS1005: ',' expected. 260 prependListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:260:99 - error TS1005: ')' expected. 260 prependListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:262:18 - error TS1005: ',' expected. 262 event: "upgrade", ~ node_modules/@types/node/https.d.ts:263:21 - error TS1005: ',' expected. 263 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:263:98 - error TS1109: Expression expected. 263 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:264:10 - error TS1005: ';' expected. 264 ): this; ~ node_modules/@types/node/https.d.ts:265:34 - error TS1005: ',' expected. 265 prependOnceListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:265:52 - error TS1005: ',' expected. 265 prependOnceListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:265:78 - error TS1109: Expression expected. 265 prependOnceListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:265:79 - error TS1005: ';' expected. 265 prependOnceListener(event: string, listener: (...args: any[]) => void): this; ~ node_modules/@types/node/https.d.ts:266:34 - error TS1005: ',' expected. 266 prependOnceListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:266:54 - error TS1005: ',' expected. 266 prependOnceListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:266:113 - error TS1109: Expression expected. 266 prependOnceListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:266:114 - error TS1005: ';' expected. 266 prependOnceListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:268:18 - error TS1005: ',' expected. 268 event: "newSession", ~ node_modules/@types/node/https.d.ts:269:21 - error TS1005: ',' expected. 269 listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void, ~ node_modules/@types/node/https.d.ts:269:111 - error TS1109: Expression expected. 269 listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void, ~ node_modules/@types/node/https.d.ts:270:10 - error TS1005: ';' expected. 270 ): this; ~ node_modules/@types/node/https.d.ts:272:18 - error TS1005: ',' expected. 272 event: "OCSPRequest", ~ node_modules/@types/node/https.d.ts:273:21 - error TS1005: ',' expected. 273 listener: ( ~ node_modules/@types/node/https.d.ts:277:22 - error TS1109: Expression expected. 277 ) => void, ~ node_modules/@types/node/https.d.ts:278:10 - error TS1005: ';' expected. 278 ): this; ~ node_modules/@types/node/https.d.ts:280:18 - error TS1005: ',' expected. 280 event: "resumeSession", ~ node_modules/@types/node/https.d.ts:281:21 - error TS1005: ',' expected. 281 listener: ( ~ node_modules/@types/node/https.d.ts:284:22 - error TS1109: Expression expected. 284 ) => void, ~ node_modules/@types/node/https.d.ts:285:10 - error TS1005: ';' expected. 285 ): this; ~ node_modules/@types/node/https.d.ts:286:34 - error TS1005: ',' expected. 286 prependOnceListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:286:64 - error TS1005: ',' expected. 286 prependOnceListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:286:100 - error TS1109: Expression expected. 286 prependOnceListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:286:101 - error TS1005: ';' expected. 286 prependOnceListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:287:34 - error TS1005: ',' expected. 287 prependOnceListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:287:62 - error TS1005: ',' expected. 287 prependOnceListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:287:110 - error TS1109: Expression expected. 287 prependOnceListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:287:111 - error TS1005: ';' expected. 287 prependOnceListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; ~ node_modules/@types/node/https.d.ts:288:34 - error TS1005: ',' expected. 288 prependOnceListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:288:53 - error TS1005: ',' expected. 288 prependOnceListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:288:65 - error TS1109: Expression expected. 288 prependOnceListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:288:66 - error TS1005: ';' expected. 288 prependOnceListener(event: "close", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:289:34 - error TS1005: ',' expected. 289 prependOnceListener(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:289:58 - error TS1005: ',' expected. 289 prependOnceListener(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:289:84 - error TS1109: Expression expected. 289 prependOnceListener(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:289:85 - error TS1005: ';' expected. 289 prependOnceListener(event: "connection", listener: (socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:290:34 - error TS1005: ',' expected. 290 prependOnceListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:290:53 - error TS1005: ',' expected. 290 prependOnceListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:290:75 - error TS1109: Expression expected. 290 prependOnceListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:290:76 - error TS1005: ';' expected. 290 prependOnceListener(event: "error", listener: (err: Error) => void): this; ~ node_modules/@types/node/https.d.ts:291:34 - error TS1005: ',' expected. 291 prependOnceListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:291:57 - error TS1005: ',' expected. 291 prependOnceListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:291:69 - error TS1109: Expression expected. 291 prependOnceListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:291:70 - error TS1005: ';' expected. 291 prependOnceListener(event: "listening", listener: () => void): this; ~ node_modules/@types/node/https.d.ts:292:34 - error TS1005: ',' expected. 292 prependOnceListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:292:61 - error TS1005: ',' expected. 292 prependOnceListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:292:102 - error TS1005: '(' expected. 292 prependOnceListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:292:103 - error TS1005: ',' expected. 292 prependOnceListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:292:109 - error TS1005: ')' expected. 292 prependOnceListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:293:34 - error TS1005: ',' expected. 293 prependOnceListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:293:64 - error TS1005: ',' expected. 293 prependOnceListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:293:105 - error TS1005: '(' expected. 293 prependOnceListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:293:106 - error TS1005: ',' expected. 293 prependOnceListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:293:112 - error TS1005: ')' expected. 293 prependOnceListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:294:34 - error TS1005: ',' expected. 294 prependOnceListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:294:59 - error TS1005: ',' expected. 294 prependOnceListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:294:97 - error TS1109: Expression expected. 294 prependOnceListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:294:98 - error TS1005: ';' expected. 294 prependOnceListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this; ~ node_modules/@types/node/https.d.ts:296:18 - error TS1005: ',' expected. 296 event: "connect", ~ node_modules/@types/node/https.d.ts:297:21 - error TS1005: ',' expected. 297 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:297:98 - error TS1109: Expression expected. 297 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:298:10 - error TS1005: ';' expected. 298 ): this; ~ node_modules/@types/node/https.d.ts:299:34 - error TS1005: ',' expected. 299 prependOnceListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:299:55 - error TS1005: ',' expected. 299 prependOnceListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:299:96 - error TS1005: '(' expected. 299 prependOnceListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:299:97 - error TS1005: ',' expected. 299 prependOnceListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:299:103 - error TS1005: ')' expected. 299 prependOnceListener(event: "request", listener: http.RequestListener<Request, Response>): this; ~ node_modules/@types/node/https.d.ts:301:18 - error TS1005: ',' expected. 301 event: "upgrade", ~ node_modules/@types/node/https.d.ts:302:21 - error TS1005: ',' expected. 302 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:302:98 - error TS1109: Expression expected. 302 listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void, ~ node_modules/@types/node/https.d.ts:303:10 - error TS1005: ';' expected. 303 ): this; ~ node_modules/@types/node/https.d.ts:344:52 - error TS1005: ',' expected. 344 Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse, ~ node_modules/@types/node/https.d.ts:344:76 - error TS1109: Expression expected. 344 Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse, ~ node_modules/@types/node/https.d.ts:345:5 - error TS1109: Expression expected. 345 >(requestListener?: http.RequestListener<Request, Response>): Server<Request, Response>; ~ node_modules/@types/node/https.d.ts:345:23 - error TS1109: Expression expected. 345 >(requestListener?: http.RequestListener<Request, Response>): Server<Request, Response>; ~ node_modules/@types/node/https.d.ts:345:64 - error TS1005: '(' expected. 345 >(requestListener?: http.RequestListener<Request, Response>): Server<Request, Response>; ~ node_modules/@types/node/https.d.ts:345:65 - error TS1005: ')' expected. 345 >(requestListener?: http.RequestListener<Request, Response>): Server<Request, Response>; ~ node_modules/@types/node/https.d.ts:345:92 - error TS1005: '(' expected. 345 >(requestListener?: http.RequestListener<Request, Response>): Server<Request, Response>; ~ node_modules/@types/node/https.d.ts:348:52 - error TS1005: ',' expected. 348 Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse, ~ node_modules/@types/node/https.d.ts:348:76 - error TS1109: Expression expected. 348 Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse, ~ node_modules/@types/node/https.d.ts:349:5 - error TS1109: Expression expected. 349 >( ~ node_modules/@types/node/https.d.ts:350:16 - error TS1005: ')' expected. 350 options: ServerOptions<Request, Response>, ~ node_modules/@types/node/https.d.ts:350:50 - error TS1109: Expression expected. 350 options: ServerOptions<Request, Response>, ~ node_modules/@types/node/https.d.ts:351:25 - error TS1109: Expression expected. 351 requestListener?: http.RequestListener<Request, Response>, ~ node_modules/@types/node/https.d.ts:351:66 - error TS1109: Expression expected. 351 requestListener?: http.RequestListener<Request, Response>, ~ node_modules/@types/node/https.d.ts:352:5 - error TS1109: Expression expected. 352 ): Server<Request, Response>; ~ node_modules/@types/node/https.d.ts:352:6 - error TS1128: Declaration or statement expected. 352 ): Server<Request, Response>; ~ node_modules/@types/node/https.d.ts:352:33 - error TS1005: '(' expected. 352 ): Server<Request, Response>; ~ node_modules/@types/node/stream/web.d.ts:483:56 - error TS1005: '?' expected. 483 DecompressionStream: infer T extends object; ~ Found 1421 errors in 4 files. Errors Files 383 node_modules/@types/node/http.d.ts:241 563 node_modules/@types/node/http2.d.ts:1068 474 node_modules/@types/node/https.d.ts:14 1 node_modules/@types/node/stream/web.d.ts:483 Any ideas as to what might be causing it and how to fix it? TIA
asked
2026-02-17
Nico Mouton
3 answers
1
Your TypeScript version is too old for the `@types/node` package you have installed. The newer `@types/node` versions use TypeScript syntax features (like the `satisfies` keyword and complex generics) that only work with TS 4.9+.
Easiest fix is to either upgrade TypeScript in your project:
1. Run `npm install typescript@latest`
2. Run `npm run start` again
Or alternatively pin an older version of `@types/node` that matches your current TS version. You can check your TS version with `npx tsc --version`. If for some reason you cant upgrade TS, try `npm install @types/node@18` or even lower until it compiles.
Ran into this same kind of thing before with the SDK tutorial, the docs dont always specify which versions to use and npm just grabs the latest types by default.
answered
2026-02-17
Borys Kusmirek
0
This error usually happens because your TypeScript version seems to be old for the installed @types/node.
Try updating TypeScript:
npm i -D typescript@latest
Then rebuild your project.
answered
2026-02-17
Ahmet Kudu
-1
Probably easiest to just ask claude code to have a look at your project.
answered
2026-02-17
Andrej Koelewijn