UNPKG

919 BTypeScriptView Raw
1// NOTE: These definitions support NodeJS and TypeScript 3.2.
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.2/index.d.ts - Definitions specific to TypeScript 3.2
7
8// Reference required types from the default lib:
9/// <reference lib="es2018" />
10/// <reference lib="esnext.asynciterable" />
11/// <reference lib="esnext.intl" />
12/// <reference lib="esnext.bigint" />
13
14// Base definitions for all NodeJS modules that are not specific to any version of TypeScript:
15// tslint:disable-next-line:no-bad-reference
16/// <reference path="../base.d.ts" />
17
18// TypeScript 3.2-specific augmentations:
19/// <reference path="fs.d.ts" />
20/// <reference path="util.d.ts" />
21/// <reference path="globals.d.ts" />