UNPKG

961 BTypeScriptView Raw
1// NOTE: These definitions support NodeJS and TypeScript 3.4.
2
3// NOTE: TypeScript version-specific augmentations can be found in the following paths:
4// - ~/base.d.ts - Shared definitions common to all TypeScript versions
5// - ~/index.d.ts - Definitions specific to TypeScript 2.1
6// - ~/ts3.4/base.d.ts - Definitions specific to TypeScript 3.4
7// - ~/ts3.4/index.d.ts - Definitions specific to TypeScript 3.4 with assert pulled in
8
9// Reference required types from the default lib:
10/// <reference lib="es2018" />
11/// <reference lib="esnext.asynciterable" />
12/// <reference lib="esnext.intl" />
13/// <reference lib="esnext.bigint" />
14
15// Base definitions for all NodeJS modules that are not specific to any version of TypeScript:
16// tslint:disable-next-line:no-bad-reference
17/// <reference path="../ts3.2/base.d.ts" />
18
19// TypeScript 3.5-specific augmentations:
20/// <reference path="globals.global.d.ts" />