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

32 lines
733 B
TypeScript

import { Node } from 'cc';
interface hero_tip extends Node{
nodesType:{
"tips_sqjb" : hero_tip_tips_sqjb,
"Label" : hero_tip_tips_sqjb_Label,
"tips_dcjb" : hero_tip_tips_dcjb,
}
}
interface hero_tip_tips_sqjb extends Node{
nodesType:{
"Label" : hero_tip_tips_sqjb_Label,
}
}
interface hero_tip_tips_sqjb_Label extends Node{
}
interface hero_tip_tips_dcjb extends Node{
nodesType:{
"Label" : hero_tip_tips_dcjb_Label,
}
}
interface hero_tip_tips_dcjb_Label extends Node{
}
declare global {
type tree_hero_tip = {
"hero_tip" : hero_tip,
"tips_sqjb" : hero_tip_tips_sqjb,
"Label" : hero_tip_tips_sqjb_Label,
"tips_dcjb" : hero_tip_tips_dcjb,
}}