diff options
| author | Max Nanis | 2025-05-28 04:41:37 +0100 |
|---|---|---|
| committer | Max Nanis | 2025-05-28 04:41:37 +0100 |
| commit | 8caa77413ea372e5cbd2980a9922d701af359c04 (patch) | |
| tree | 9341e2f70fab6b2678fdff53c002954ef69c7b3e /src/models/app.ts | |
| download | panel-ui-8caa77413ea372e5cbd2980a9922d701af359c04.tar.gz panel-ui-8caa77413ea372e5cbd2980a9922d701af359c04.zip | |
initial commit
Diffstat (limited to 'src/models/app.ts')
| -rw-r--r-- | src/models/app.ts | 13 |
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 +} |
