blob: 25b24129f06023845c219b85196fe163a7a5986b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
export type Page = 'offerwall' | 'questions' | 'cashout_methods';
export interface App {
targetId: string,
bpid: string;
bpuid: string;
offerwall: string;
walletMode: boolean;
panelName: string | null;
leaderboard: boolean;
currentPage: Page
//-- responses saved from the last OfferwallResponse
availability_count: number | undefined;
offerwall_id: string | undefined;
}
|