UNPKG

@airgap/etherlink

Version:

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

9 lines (8 loc) 212 B
export declare type BytesStringFormat = 'hex' | 'encoded'; export interface BytesString { format: BytesStringFormat; value: string; } export interface HexString extends BytesString { format: 'hex'; }