We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
export interface PropTypeData { propId : number, propType : PropType amount : number desc ?: string } export interface UserGameData {
propData: Map<PropType, PropTypeData> // 道具数据
} 这样写协议生成编译报错。
The text was updated successfully, but these errors were encountered:
是不支持Map吗?
Sorry, something went wrong.
是,Map 暂未支持,后续会支持。 可以先用xxx: {[key: string]: ValueType} 的形式代替,传 Object
xxx: {[key: string]: ValueType}
No branches or pull requests
export interface PropTypeData {
propId : number,
propType : PropType
amount : number
desc ?: string
}
export interface UserGameData {
}
这样写协议生成编译报错。
The text was updated successfully, but these errors were encountered: