14 lines
269 B
TypeScript
14 lines
269 B
TypeScript
import { Node } from 'cc';
|
|
interface dwinfo extends Node{
|
|
nodesType:{
|
|
"dwnum" : dwinfo_dwnum,
|
|
|
|
}
|
|
}
|
|
interface dwinfo_dwnum extends Node{
|
|
}
|
|
declare global {
|
|
type tree_conglintanxian_dwinfo = {
|
|
"dwinfo" : dwinfo,
|
|
"dwnum" : dwinfo_dwnum,
|
|
}} |