UNPKG

ts-neo4j-parser

Version:

Typescript Neo4j parser to JSON

10 lines (9 loc) 427 B
export declare class IntegerUtils { static invertBit(bit: string): "0" | "1"; static binaryInvert(binaryString: string): string; static binaryIncrement(binaryString: string): string; static binaryDecrement(binaryString: string): string; static binaryAbs(binaryString: string): string; static to32Bits(val: number): string; static to64BitsIntegerString(high: number, low: number): string; }