This repository has been archived on 2023-01-14. You can view files and clone it, but cannot push or open issues or pull requests.
libsiaweb/dist/skylinkBitfield.d.ts

5 lines
309 B
TypeScript

declare const SKYLINK_U8_V1_V2_LENGTH = 34;
declare function parseSkylinkBitfield(skylinkU8: Uint8Array): [bigint, bigint, bigint, string | null];
declare function skylinkV1Bitfield(dataSizeBI: bigint): [Uint8Array, string | null];
export { SKYLINK_U8_V1_V2_LENGTH, parseSkylinkBitfield, skylinkV1Bitfield };