8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
|
/**
|
||
|
* Returns the bitlength of a number
|
||
|
*
|
||
|
* @param a
|
||
|
* @returns The bit length
|
||
|
*/
|
||
|
export declare function bitLength(a: number | bigint): number;
|
||
|
//# sourceMappingURL=bitLength.d.ts.map
|