18 lines
421 B
TypeScript
18 lines
421 B
TypeScript
import { Node } from 'cc';
|
|
interface ty_top2 extends Node{
|
|
nodesType:{
|
|
"ty_tiao_red" : ty_top2_ty_tiao_red,
|
|
"txt_pqgb" : ty_top2_txt_pqgb,
|
|
|
|
}
|
|
}
|
|
interface ty_top2_ty_tiao_red extends Node{
|
|
}
|
|
interface ty_top2_txt_pqgb extends Node{
|
|
}
|
|
declare global {
|
|
type tree_a_public_ty_top2 = {
|
|
"ty_top2" : ty_top2,
|
|
"ty_tiao_red" : ty_top2_ty_tiao_red,
|
|
"txt_pqgb" : ty_top2_txt_pqgb,
|
|
}} |