Skip to content

格式

typescript
NetConversation.isNew

所属类: NetConversation

描述

(只读)是否是新的NetConversation。

参数

参数名类型描述

返回值

类型描述
boolean

代码示例

typescript
NetServer.on_converastion_connect = async (conv: NetConversation) => {
    let isNew = conv.isNew;
}