# Variable: rewards
• rewards(): Promise‹ReadonlyWithExtensions‹Reward[]››
奖励列表
example
// 在头部引入奖励模块
import { rewardSystem } from "@timi/mogs-sdk";
...
// 使用
const result = await rewardSystem.allRewards;
result.forEach((item) => console.log(item.rewardList));
1
2
3
4
5
6
2
3
4
5
6
description
返回所有奖励项信息
# 返回值:
Promise‹ReadonlyWithExtensions‹Reward[]››
Reward
结构
属性 | 类型 | 描述 |
---|---|---|
description | string | 奖励描述 |
id | number | 奖励ID |
limitation | Limitation | 限制信息 |
rewardPool | RewardPool | 奖励池信息 |