Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /** * Interface representing a daily award item. */ export interface IDailyAwardItem { /** * The icon of the award item. */ icon: string /** * The name of the award item. */ name: string /** * The count of the award item. */ cnt: number } /** * Interface representing a daily information . */ export interface IDailyInfo { /** * The total number of days the user has signed in. */ total_sign_day: number /** * The current date in YYYY-MM-DD format. */ today: string /** * Whether the user has signed in today. */ is_sign: boolean /** * Whether this is the user's first time signing in. */ first_bind: boolean /** * Whether the user has subscribed to the game. */ is_sub: boolean /** * The region of the user's game account. */ region: string /** * Whether today is the last day of the current month. */ month_last_day: boolean short_sign_day: number sign_cnt_missed: number } /** * An object describing a daily reward. */ export interface IDailyReward { /** * The month number in which the reward is available. */ month: number /** * Whether the user can resign for the reward. */ resign: boolean /** * The current date in string format. */ now: string /** * The business code of the reward. */ biz: string /** * The award item associated with the reward. */ award: IDailyAwardItem } /** * Represents daily rewards for a specific month. */ export interface IDailyRewards { /** * Represents daily rewards for a specific month. */ month: number /** * Represents daily rewards for a specific month. */ resign: boolean /** * The date of the reward in miliseconds. */ now: string /** * The business name associated with the reward. */ biz: string /** * An array of daily award items. */ awards: IDailyAwardItem[] } /** * Interface representing the response data for claiming daily rewards. */ export interface IDailyClaim { /** The status of the claim request. */ status: string /** The response code for the claim request. */ code: number /** The claimed reward, if any. */ reward: IDailyReward | null /** Information about the user's daily claim status. */ info: IDailyInfo } |