UNPKG

@airgap/etherlink

Version:

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

10 lines (9 loc) 281 B
import { Sealed } from '../base/sealed'; declare type UITextType = 'plain'; interface BaseUIText<_Type extends UITextType> extends Sealed<_Type> { value: string; } interface PlainUIText extends BaseUIText<'plain'> { } export declare type AirGapUIText = PlainUIText; export {};