source: trip-planner-front/node_modules/@types/node/index.d.ts@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 4.4 KB
Line 
1// Type definitions for non-npm package Node.js 12.20
2// Project: https://nodejs.org/
3// Definitions by: Microsoft TypeScript <https://github.com/Microsoft>
4// DefinitelyTyped <https://github.com/DefinitelyTyped>
5// Alberto Schiabel <https://github.com/jkomyno>
6// Alvis HT Tang <https://github.com/alvis>
7// Andrew Makarov <https://github.com/r3nya>
8// Benjamin Toueg <https://github.com/btoueg>
9// Chigozirim C. <https://github.com/smac89>
10// David Junger <https://github.com/touffy>
11// Deividas Bakanas <https://github.com/DeividasBakanas>
12// Eugene Y. Q. Shen <https://github.com/eyqs>
13// Hannes Magnusson <https://github.com/Hannes-Magnusson-CK>
14// Hoàng Văn Khải <https://github.com/KSXGitHub>
15// Huw <https://github.com/hoo29>
16// Kelvin Jin <https://github.com/kjin>
17// Klaus Meinhardt <https://github.com/ajafff>
18// Lishude <https://github.com/islishude>
19// Mariusz Wiktorczyk <https://github.com/mwiktorczyk>
20// Mohsen Azimi <https://github.com/mohsen1>
21// Nicolas Even <https://github.com/n-e>
22// Nikita Galkin <https://github.com/galkin>
23// Parambir Singh <https://github.com/parambirs>
24// Sebastian Silbermann <https://github.com/eps1lon>
25// Simon Schick <https://github.com/SimonSchick>
26// Thomas den Hollander <https://github.com/ThomasdenH>
27// Wilco Bakker <https://github.com/WilcoBakker>
28// wwwy3y3 <https://github.com/wwwy3y3>
29// Zane Hannan AU <https://github.com/ZaneHannanAU>
30// Samuel Ainsworth <https://github.com/samuela>
31// Kyle Uehlein <https://github.com/kuehlein>
32// Thanik Bhongbhibhat <https://github.com/bhongy>
33// Marcin Kopacz <https://github.com/chyzwar>
34// Trivikram Kamat <https://github.com/trivikr>
35// Minh Son Nguyen <https://github.com/nguymin4>
36// Junxiao Shi <https://github.com/yoursunny>
37// Ilia Baryshnikov <https://github.com/qwelias>
38// ExE Boss <https://github.com/ExE-Boss>
39// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
40
41// NOTE: These definitions support NodeJS and TypeScript 3.7.
42// This isn't strictly needed since 3.7 has the assert module, but this way we're consistent.
43// Typically type modificatons should be made in base.d.ts instead of here
44
45// Reference required types from the default lib:
46/// <reference lib="es2018" />
47/// <reference lib="esnext.asynciterable" />
48/// <reference lib="esnext.intl" />
49/// <reference lib="esnext.bigint" />
50
51/// <reference path="assert.d.ts" />
52/// <reference path="globals.d.ts" />
53/// <reference path="async_hooks.d.ts" />
54/// <reference path="buffer.d.ts" />
55/// <reference path="child_process.d.ts" />
56/// <reference path="cluster.d.ts" />
57/// <reference path="console.d.ts" />
58/// <reference path="constants.d.ts" />
59/// <reference path="crypto.d.ts" />
60/// <reference path="dgram.d.ts" />
61/// <reference path="dns.d.ts" />
62/// <reference path="domain.d.ts" />
63/// <reference path="events.d.ts" />
64/// <reference path="fs.d.ts" />
65/// <reference path="http.d.ts" />
66/// <reference path="http2.d.ts" />
67/// <reference path="https.d.ts" />
68/// <reference path="inspector.d.ts" />
69/// <reference path="module.d.ts" />
70/// <reference path="net.d.ts" />
71/// <reference path="os.d.ts" />
72/// <reference path="path.d.ts" />
73/// <reference path="perf_hooks.d.ts" />
74/// <reference path="process.d.ts" />
75/// <reference path="punycode.d.ts" />
76/// <reference path="querystring.d.ts" />
77/// <reference path="readline.d.ts" />
78/// <reference path="repl.d.ts" />
79/// <reference path="stream.d.ts" />
80/// <reference path="string_decoder.d.ts" />
81/// <reference path="timers.d.ts" />
82/// <reference path="tls.d.ts" />
83/// <reference path="trace_events.d.ts" />
84/// <reference path="tty.d.ts" />
85/// <reference path="url.d.ts" />
86/// <reference path="util.d.ts" />
87/// <reference path="v8.d.ts" />
88/// <reference path="vm.d.ts" />
89/// <reference path="wasi.d.ts" />
90/// <reference path="worker_threads.d.ts" />
91/// <reference path="zlib.d.ts" />
92/// <reference path="globals.global.d.ts" />
Note: See TracBrowser for help on using the repository browser.