blob: a0412e0fbeda377db5c8fe13cae569e5e9911002 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
}
|