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

9 lines
179 B
TypeScript
Raw Normal View History

2020-04-09 14:53:29 +02:00
import {Buffer} from 'buffer';
2019-10-31 17:35:18 +01:00
export type bytes = Buffer;
export type bytes32 = Buffer;
export type bytes16 = Buffer;
export type uint32 = number;
2020-04-09 14:53:29 +02:00
export type uint64 = number;