# Variable: historyPerformances
• historyPerformances(): Promise‹ReadonlyWithExtensions‹HistoryPerformance[]››
历史赛季段位
description
返回近5个赛季的段位信息
example
// 在头部引入天梯模块
import { ladderSystem } from "@timi/mogs-sdk";
...
// 使用
const performances = await ladderSystem.historyPerformances;
performances.forEach((item) => console.log(item.gamingStatForTheSeason));
1
2
3
4
5
6
2
3
4
5
6
# 返回值:
Promise‹ReadonlyWithExtensions‹HistoryPerformance[]››
HistoryPerformance
结构
属性 | 类型 | 描述 |
---|---|---|
gamingStatForTheSeason | GamingStat | 赛季战绩统计信息 |
season | Season | 当赛季信息 |
tier | Tier | 当赛季段位 |
totalScore | number | 赛季总分数,胜利时加,失败时减,减到当前段位底分以下掉段位 |
← 概述 performance →