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

22 lines
525 B
TypeScript

import { Node } from 'cc';
interface tips_top extends Node{
nodesType:{
"ty_pop1" : tips_top_ty_pop1,
"title" : tips_top_title,
"btn_close" : tips_top_btn_close,
}
}
interface tips_top_ty_pop1 extends Node{
}
interface tips_top_title extends Node{
}
interface tips_top_btn_close extends Node{
}
declare global {
type tree_a_public_tips_top = {
"tips_top" : tips_top,
"ty_pop1" : tips_top_ty_pop1,
"title" : tips_top_title,
"btn_close" : tips_top_btn_close,
}}