mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
13 lines
254 B
TypeScript
13 lines
254 B
TypeScript
// tslint:disable-next-line:no-bad-reference
|
|
/// <reference path="ts3.1/process.d.ts" />
|
|
|
|
declare module 'process' {
|
|
global {
|
|
namespace NodeJS {
|
|
interface HRTime {
|
|
bigint(): bigint;
|
|
}
|
|
}
|
|
}
|
|
}
|