mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Supports constructing from number * Support the public buffer and offset properties * Support all method signatures of the setValue method
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
// Type definitions for node-int64 v0.4.0
|
|
// Project: https://github.com/broofa/node-int64
|
|
// Definitions by: Benno Dreissig <https://github.com/x3cion>
|
|
// Kevin Greene <https://github.com/kevin-greene-ck>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
|
|
|
|
declare class Int64 {
|
|
static MAX_INT: number;
|
|
static MIN_INT: number;
|
|
|
|
public buffer: Buffer;
|
|
public offset: number;
|
|
|
|
constructor(buffer: Buffer, offset?: number);
|
|
constructor(array: Uint8Array, offset?: number);
|
|
constructor(str: string);
|
|
constructor(num: number);
|
|
constructor(hi: number, lo: number);
|
|
|
|
|
|
_2scomp(): void;
|
|
|
|
// setValue(string) - A hexidecimal string
|
|
setValue(str: string): void;
|
|
// setValue(number) - Number (throws if n is outside int64 range)
|
|
setValue(num: number): void;
|
|
// setValue(hi, lo) - Raw bits as two 32-bit values
|
|
setValue(hi: number, lo: number): void;
|
|
|
|
toNumber(allowImprecise?: boolean): number;
|
|
valueOf(): number;
|
|
toString(radix?: number): string;
|
|
toOctetString(separator?: string): string;
|
|
toBuffer(rawBuffer?: boolean): Buffer;
|
|
copy(targetBuffer: Buffer, targetOffset?: number): void;
|
|
compare(other: Int64): number;
|
|
equals(other: Int64): boolean;
|
|
inspect(): string;
|
|
}
|
|
|
|
export = Int64;
|