aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-shared/src/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/react-shared/src/types.ts')
-rw-r--r--packages/react-shared/src/types.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/react-shared/src/types.ts b/packages/react-shared/src/types.ts
new file mode 100644
index 000000000..88fadcc09
--- /dev/null
+++ b/packages/react-shared/src/types.ts
@@ -0,0 +1,25 @@
+export interface Styles {
+ [name: string]: React.CSSProperties;
+}
+
+export enum HeaderSizes {
+ H1 = 'h1',
+ H2 = 'h2',
+ H3 = 'h3',
+}
+
+export interface MenuSubsectionsBySection {
+ [section: string]: string[];
+}
+
+export enum EtherscanLinkSuffixes {
+ Address = 'address',
+ Tx = 'tx',
+}
+
+export enum Networks {
+ Mainnet = 'Mainnet',
+ Kovan = 'Kovan',
+ Ropsten = 'Ropsten',
+ Rinkeby = 'Rinkeby',
+}