From 8caa77413ea372e5cbd2980a9922d701af359c04 Mon Sep 17 00:00:00 2001 From: Max Nanis Date: Wed, 28 May 2025 04:41:37 +0100 Subject: initial commit --- src/models/app.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/models/app.ts (limited to 'src/models/app.ts') 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 +} -- cgit v1.2.3