mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 10:41:56 +00:00
6 lines
213 B
TypeScript
6 lines
213 B
TypeScript
|
// All keys should be optional and nullable, since WalletConfig is not set the
|
||
|
// first time it's unlocked, and any configuration should be removable.
|
||
|
export interface WalletConfig {
|
||
|
tokens?: string[] | null;
|
||
|
}
|