UNPKG

@ecash/lib

Version:

Library for eCash transaction building

7 lines (5 loc) 290 B
// Copyright (c) 2024 The Bitcoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. /** Union type which can either be a normal JS Number or a BigInt. */ export type Int = number | bigint;