92 lines
4.9 KiB
TypeScript
92 lines
4.9 KiB
TypeScript
// Type definitions for non-npm package Node.js 14.6
|
|
// Project: http://nodejs.org/
|
|
// Definitions by: Microsoft TypeScript <https://github.com/Microsoft>
|
|
// DefinitelyTyped <https://github.com/DefinitelyTyped>
|
|
// Alberto Schiabel <https://github.com/jkomyno>
|
|
// Alexander T. <https://github.com/a-tarasyuk>
|
|
// Alvis HT Tang <https://github.com/alvis>
|
|
// Andrew Makarov <https://github.com/r3nya>
|
|
// Benjamin Toueg <https://github.com/btoueg>
|
|
// Bruno Scheufler <https://github.com/brunoscheufler>
|
|
// Chigozirim C. <https://github.com/smac89>
|
|
// David Junger <https://github.com/touffy>
|
|
// Deividas Bakanas <https://github.com/DeividasBakanas>
|
|
// Eugene Y. Q. Shen <https://github.com/eyqs>
|
|
// Flarna <https://github.com/Flarna>
|
|
// Hannes Magnusson <https://github.com/Hannes-Magnusson-CK>
|
|
// Hoàng Văn Khải <https://github.com/KSXGitHub>
|
|
// Huw <https://github.com/hoo29>
|
|
// Kelvin Jin <https://github.com/kjin>
|
|
// Klaus Meinhardt <https://github.com/ajafff>
|
|
// Lishude <https://github.com/islishude>
|
|
// Mariusz Wiktorczyk <https://github.com/mwiktorczyk>
|
|
// Mohsen Azimi <https://github.com/mohsen1>
|
|
// Nicolas Even <https://github.com/n-e>
|
|
// Nikita Galkin <https://github.com/galkin>
|
|
// Parambir Singh <https://github.com/parambirs>
|
|
// Sebastian Silbermann <https://github.com/eps1lon>
|
|
// Simon Schick <https://github.com/SimonSchick>
|
|
// Thomas den Hollander <https://github.com/ThomasdenH>
|
|
// Wilco Bakker <https://github.com/WilcoBakker>
|
|
// wwwy3y3 <https://github.com/wwwy3y3>
|
|
// Samuel Ainsworth <https://github.com/samuela>
|
|
// Kyle Uehlein <https://github.com/kuehlein>
|
|
// Jordi Oliveras Rovira <https://github.com/j-oliveras>
|
|
// Thanik Bhongbhibhat <https://github.com/bhongy>
|
|
// Marcin Kopacz <https://github.com/chyzwar>
|
|
// Trivikram Kamat <https://github.com/trivikr>
|
|
// Minh Son Nguyen <https://github.com/nguymin4>
|
|
// Junxiao Shi <https://github.com/yoursunny>
|
|
// Ilia Baryshnikov <https://github.com/qwelias>
|
|
// ExE Boss <https://github.com/ExE-Boss>
|
|
// Surasak Chaisurin <https://github.com/Ryan-Willpower>
|
|
// Piotr Błażejewicz <https://github.com/peterblazejewicz>
|
|
// Anna Henningsen <https://github.com/addaleax>
|
|
// Jason Kwok <https://github.com/JasonHK>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
// NOTE: These definitions support NodeJS and TypeScript 3.5.
|
|
|
|
// NOTE: TypeScript version-specific augmentations can be found in the following paths:
|
|
// - ~/base.d.ts - Shared definitions common to all TypeScript versions
|
|
// - ~/index.d.ts - Definitions specific to TypeScript 2.8
|
|
// - ~/ts3.5/index.d.ts - Definitions specific to TypeScript 3.5
|
|
|
|
// NOTE: Augmentations for TypeScript 3.5 and later should use individual files for overrides
|
|
// within the respective ~/ts3.5 (or later) folder. However, this is disallowed for versions
|
|
// prior to TypeScript 3.5, so the older definitions will be found here.
|
|
|
|
// Base definitions for all NodeJS modules that are not specific to any version of TypeScript:
|
|
/// <reference path="base.d.ts" />
|
|
|
|
// We can't include globals.global.d.ts in globals.d.ts, as it'll cause duplication errors in TypeScript 3.5+
|
|
/// <reference path="globals.global.d.ts" />
|
|
|
|
// We can't include assert.d.ts in base.d.ts, as it'll cause duplication errors in TypeScript 3.7+
|
|
/// <reference path="assert.d.ts" />
|
|
|
|
// Forward-declarations for needed types from es2015 and later (in case users are using `--lib es5`)
|
|
// Empty interfaces are used here which merge fine with the real declarations in the lib XXX files
|
|
// just to ensure the names are known and node typings can be used without importing these libs.
|
|
// if someone really needs these types the libs need to be added via --lib or in tsconfig.json
|
|
interface AsyncIterable<T> { }
|
|
interface IterableIterator<T> { }
|
|
interface AsyncIterableIterator<T> {}
|
|
interface SymbolConstructor {
|
|
readonly asyncIterator: symbol;
|
|
}
|
|
declare var Symbol: SymbolConstructor;
|
|
// even this is just a forward declaration some properties are added otherwise
|
|
// it would be allowed to pass anything to e.g. Buffer.from()
|
|
interface SharedArrayBuffer {
|
|
readonly byteLength: number;
|
|
slice(begin?: number, end?: number): SharedArrayBuffer;
|
|
}
|
|
|
|
declare module "util" {
|
|
namespace types {
|
|
function isBigInt64Array(value: any): boolean;
|
|
function isBigUint64Array(value: any): boolean;
|
|
}
|
|
}
|