squidGame/tgx-games-config/interface/ITreasureCfg.ts

28 lines
288 B
TypeScript
Raw Normal View History

2025-02-17 21:36:37 +08:00
export interface ITreasureCfg {
/**
*ID
*/
id:number,
/**
*
*/
name:string,
/**
*
*/
icon:string,
/**
*
*/
rare:number,
/**
*
*/
describe:string,
/**
*
*/
sign:string,
2025-02-07 10:49:34 +08:00
}