1
0
mirror of https://github.com/fluencelabs/js-libp2p-noise synced 2025-05-31 10:51:27 +00:00

10 lines
201 B
TypeScript
Raw Normal View History

2020-04-03 13:19:43 +02:00
import BN from 'bn.js';
2019-10-31 17:35:18 +01:00
import { Buffer } from 'buffer';
export type bytes = Buffer;
export type bytes32 = Buffer;
export type bytes16 = Buffer;
export type uint32 = number;
export type uint64 = BN;