27 lines
659 B
TypeScript
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,
|
|
}} |