aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/types.ts
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-11-15 06:54:41 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-11-15 06:54:41 +0800
commitfe23bf9e51dab87ee8c8995a9d53438daff19ea0 (patch)
treeffaeb68d17894f9efdb03fd7819ff91ca35b28b0 /packages/instant/src/types.ts
parent1aae112d0e2c2b6c7ac16b491aa8345fe2aff486 (diff)
downloaddexon-sol-tools-fe23bf9e51dab87ee8c8995a9d53438daff19ea0.tar
dexon-sol-tools-fe23bf9e51dab87ee8c8995a9d53438daff19ea0.tar.gz
dexon-sol-tools-fe23bf9e51dab87ee8c8995a9d53438daff19ea0.tar.bz2
dexon-sol-tools-fe23bf9e51dab87ee8c8995a9d53438daff19ea0.tar.lz
dexon-sol-tools-fe23bf9e51dab87ee8c8995a9d53438daff19ea0.tar.xz
dexon-sol-tools-fe23bf9e51dab87ee8c8995a9d53438daff19ea0.tar.zst
dexon-sol-tools-fe23bf9e51dab87ee8c8995a9d53438daff19ea0.zip
feat: use capital values for enums
Diffstat (limited to 'packages/instant/src/types.ts')
-rw-r--r--packages/instant/src/types.ts36
1 files changed, 18 insertions, 18 deletions
diff --git a/packages/instant/src/types.ts b/packages/instant/src/types.ts
index cbb1e2caf..67f21a396 100644
--- a/packages/instant/src/types.ts
+++ b/packages/instant/src/types.ts
@@ -140,28 +140,28 @@ export interface StandardSlidingPanelSettings {
}
export enum Browser {
- Chrome = 'Chrome',
- Firefox = 'Firefox',
- Opera = 'Opera',
- Safari = 'Safari',
- Edge = 'Edge',
- Other = 'Other',
+ Chrome = 'CHROME',
+ Firefox = 'FIREFOX',
+ Opera = 'OPERA',
+ Safari = 'SAFARI',
+ Edge = 'EDGE',
+ Other = 'OTHER',
}
export enum OperatingSystem {
- Android = 'Android',
- iOS = 'iOS',
- Mac = 'Mac',
- Windows = 'Windows',
- WindowsPhone = 'WindowsPhone',
- Linux = 'Linux',
- Other = 'Other',
+ Android = 'ANDROID',
+ iOS = 'IOS',
+ Mac = 'MAC',
+ Windows = 'WINDOWS',
+ WindowsPhone = 'WINDOWS_PHONE',
+ Linux = 'LINUX',
+ Other = 'OTHER',
}
export enum ProviderType {
- Parity = 'Parity',
- MetaMask = 'MetaMask',
- Mist = 'Mist',
- CoinbaseWallet = 'Coinbase Wallet',
- Cipher = 'Cipher',
+ Parity = 'PARITY',
+ MetaMask = 'META_MASK',
+ Mist = 'MIST',
+ CoinbaseWallet = 'COINBASE_WALLET',
+ Cipher = 'CIPHER',
}