19 lines
386 B
TypeScript
19 lines
386 B
TypeScript
import { Node } from 'cc';
|
|
interface tips_dcjb extends Node{
|
|
nodesType:{
|
|
"Label" : tips_dcjb_Label,
|
|
[key:string] : any
|
|
}
|
|
}
|
|
interface tips_dcjb_Label extends Node{
|
|
nodesType:{
|
|
[key:string] : any
|
|
}
|
|
}
|
|
declare global {
|
|
type tree_tips_dcjb = {
|
|
"tips_dcjb" : tips_dcjb,
|
|
"Label" : tips_dcjb_Label,
|
|
[key:string] : any
|
|
}
|
|
} |