HJ_Client/nodeTree/tips_sqjb.d.ts
DESKTOP-15R5JU0\legu 62fef0360c init
2023-11-17 14:13:11 +08:00

19 lines
386 B
TypeScript

import { Node } from 'cc';
interface tips_sqjb extends Node{
nodesType:{
"Label" : tips_sqjb_Label,
[key:string] : any
}
}
interface tips_sqjb_Label extends Node{
nodesType:{
[key:string] : any
}
}
declare global {
type tree_tips_sqjb = {
"tips_sqjb" : tips_sqjb,
"Label" : tips_sqjb_Label,
[key:string] : any
}
}