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

27 lines
659 B
TypeScript

import { Node } from 'cc';
interface uiDown extends Node{
nodesType:{
"node_fh" : uiDown_node_fh,
"bb_img_015" : uiDown_node_fh_bb_img_015,
"txt_fh" : uiDown_node_fh_txt_fh,
}
}
interface uiDown_node_fh extends Node{
nodesType:{
"bb_img_015" : uiDown_node_fh_bb_img_015,
"txt_fh" : uiDown_node_fh_txt_fh,
}
}
interface uiDown_node_fh_bb_img_015 extends Node{
}
interface uiDown_node_fh_txt_fh extends Node{
}
declare global {
type tree_uiDown = {
"uiDown" : uiDown,
"node_fh" : uiDown_node_fh,
"bb_img_015" : uiDown_node_fh_bb_img_015,
"txt_fh" : uiDown_node_fh_txt_fh,
}}