aboutsummaryrefslogtreecommitdiff
path: root/src/models/app.ts
blob: 62da7bb079931321acc3780212feb8e354c17d1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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

    //-- responses saved from the last OfferwallResponse
    availability_count: number | undefined;
    offerwall_id: string | undefined;
}