mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-21 23:48:05 +00:00
31 lines
615 B
TypeScript
31 lines
615 B
TypeScript
export declare const BN_BE_OPTS: {
|
|
isLe: boolean;
|
|
};
|
|
export declare const BN_LE_OPTS: {
|
|
isLe: boolean;
|
|
};
|
|
export declare const BN_LE_16_OPTS: {
|
|
bitLength: number;
|
|
isLe: boolean;
|
|
};
|
|
export declare const BN_BE_32_OPTS: {
|
|
bitLength: number;
|
|
isLe: boolean;
|
|
};
|
|
export declare const BN_LE_32_OPTS: {
|
|
bitLength: number;
|
|
isLe: boolean;
|
|
};
|
|
export declare const BN_BE_256_OPTS: {
|
|
bitLength: number;
|
|
isLe: boolean;
|
|
};
|
|
export declare const BN_LE_256_OPTS: {
|
|
bitLength: number;
|
|
isLe: boolean;
|
|
};
|
|
export declare const BN_LE_512_OPTS: {
|
|
bitLength: number;
|
|
isLe: boolean;
|
|
};
|