18 lines
362 B
TypeScript
18 lines
362 B
TypeScript
import { Node } from 'cc';
|
|
interface comtips extends Node{
|
|
nodesType:{
|
|
"txt" : comtips_txt,
|
|
"Layout" : comtips_Layout,
|
|
|
|
}
|
|
}
|
|
interface comtips_txt extends Node{
|
|
}
|
|
interface comtips_Layout extends Node{
|
|
}
|
|
declare global {
|
|
type tree_comtips = {
|
|
"comtips" : comtips,
|
|
"txt" : comtips_txt,
|
|
"Layout" : comtips_Layout,
|
|
}} |