Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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