UNPKG

@airgap/etherlink

Version:

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

10 lines (9 loc) 276 B
import { AirGapUIAction } from './action'; import { AirGapUIText } from './text'; export interface AirGapUIAlert { type: 'success' | 'info' | 'warning' | 'error'; title: AirGapUIText; description: AirGapUIText; icon?: string; actions?: AirGapUIAction[]; }