22 lines
525 B
TypeScript
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,
|
|
}} |