UNPKG

@airgap/etherlink

Version:

The @airgap/etherlink package is an implementation of the ICoinProtocol interface from @airgap/coinlib-core.

9 lines (8 loc) 265 B
import { BaseCursor } from './base/cursor'; export declare type Address = string; export interface AddressCursor extends BaseCursor { } export interface AddressWithCursor<_Cursor extends AddressCursor = AddressCursor> { address: Address; cursor: _Cursor; }