mirror of
https://github.com/fluencelabs/js-libp2p-noise
synced 2025-04-25 10:12:18 +00:00
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
import { BN } from 'bn.js';
|
|
import { Buffer } from 'buffer';
|
|
|
|
export type bytes = Buffer;
|
|
export type bytes32 = Buffer;
|
|
export type bytes16 = Buffer;
|
|
|
|
export type uint32 = number;
|
|
export type uint64 = BN;
|