Based of v3.0.0b10.
This commit is contained in:
TheNetsky
2025-12-11 16:16:32 +01:00
parent 7b4b20ab4e
commit 2c4d85f732
58 changed files with 11062 additions and 0 deletions

20
src/interface/Points.ts Normal file
View File

@@ -0,0 +1,20 @@
export interface BrowserEarnablePoints {
desktopSearchPoints: number
mobileSearchPoints: number
dailySetPoints: number
morePromotionsPoints: number
totalEarnablePoints: number
}
export interface AppEarnablePoints {
readToEarn: number
checkIn: number
totalEarnablePoints: number
}
export interface MissingSearchPoints {
mobilePoints: number
desktopPoints: number
edgePoints: number
totalPoints: number
}