# Variable: tierMap

tierMap(): Promise‹ReadonlyWithExtensions‹TierMap››

段位的详细信息列表

description 返回所有段位对应的详细信息

example

// 在头部引入天梯模块
import { ladderSystem } from "@timi/mogs-sdk";
...
// 使用
const tierMap = await ladderSystem.tierMap;
for (const [k, v] of tierMap){
  console.log('段位id:', k);
  console.log('段位信息:', v)
}
1
2
3
4
5
6
7
8
9

# 返回值:

Promise‹ReadonlyWithExtensions‹TierMap››