aboutsummaryrefslogtreecommitdiff
path: root/src/models/app.ts
blob: 27923db253af419b617ca84d256d23fb1cd8ebf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export type Page = 'offerwall' | 'questions' | 'demographics' | '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;
}