mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
10 lines
283 B
TypeScript
10 lines
283 B
TypeScript
// tslint:disable-next-line:no-bad-reference
|
|
/// <reference path="ts3.1/util.d.ts" />
|
|
|
|
declare module "util" {
|
|
namespace types {
|
|
function isBigInt64Array(value: any): value is BigInt64Array;
|
|
function isBigUint64Array(value: any): value is BigUint64Array;
|
|
}
|
|
}
|