Version:CocosCreator v2.3.3
Language:TypeScript
1.Why the property with the name “_id” cannot be displayed?
const {ccclass, property} = cc._decorator;
@ccclass
export default class Test extends cc.Component {
@property({visible:true})
private _id:number=0;
@property({visible:true})
private _index:number=0;
start () {
}
}

2.The following properties are of type “cc.PhysicsCollider”.
cc.PhysicsContact.colliderA
cc.PhysicsContact.colliderB
Is it error in the “creator.d.ts” file?

