1 2 3 4 5
export declare enum WalletType { LEDGER = "Ledger", NONE = "" } export type ConfigurableWalletType = Exclude<WalletType, WalletType.NONE>;