aboutsummaryrefslogtreecommitdiff
path: root/src/models/app.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/app.ts')
-rw-r--r--src/models/app.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/models/app.ts b/src/models/app.ts
new file mode 100644
index 0000000..a0412e0
--- /dev/null
+++ b/src/models/app.ts
@@ -0,0 +1,13 @@
+export type Page = 'offerwall' | 'questions' | 'cashouts';
+
+export interface App {
+ targetId: string,
+ bpid: string;
+ bpuid: string;
+ offerwall: string;
+ walletMode: boolean;
+ panelName: string | null;
+ leaderboard: boolean;
+
+ currentPage: Page
+}