aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/types.ts')
-rw-r--r--packages/website/ts/types.ts16
1 files changed, 14 insertions, 2 deletions
diff --git a/packages/website/ts/types.ts b/packages/website/ts/types.ts
index f93d998b6..7c79b271f 100644
--- a/packages/website/ts/types.ts
+++ b/packages/website/ts/types.ts
@@ -618,10 +618,22 @@ export interface InjectedWeb3 {
};
}
-export interface TutorialInfo {
+export interface ALink {
title: string;
+ to: string;
+ shouldOpenInNewTab?: boolean;
+ type?: LinkType;
+}
+
+export interface TutorialInfo {
iconUrl: string;
description: string;
- location: string;
+ link: ALink;
+}
+
+export enum LinkType {
+ External = 'EXTERNAL',
+ ReactScroll = 'REACT_SCROLL',
+ ReactRoute = 'REACT_ROUTE',
}
// tslint:disable:max-file-line-count