@airgap/etherlink
Version:
The @airgap/etherlink package is an implementation of the ICoinProtocol interface from @airgap/coinlib-core.
7 lines (6 loc) • 342 B
TypeScript
import { _OnlineProtocol } from '../../protocol';
export declare type ConfigurableTransactionInjectorExtension<_T extends _OnlineProtocol> = ConfigurableTransactionInjectorProtocol;
export interface ConfigurableTransactionInjectorProtocol {
getInjectorUrl(): Promise<string | undefined>;
setInjectorUrl(url: string): Promise<void>;
}