14 lines
270 B
TypeScript
14 lines
270 B
TypeScript
import { Node } from 'cc';
|
|
interface ty_zwnr extends Node{
|
|
nodesType:{
|
|
"Label" : ty_zwnr_Label,
|
|
|
|
}
|
|
}
|
|
interface ty_zwnr_Label extends Node{
|
|
}
|
|
declare global {
|
|
type tree_a_public_ty_zwnr = {
|
|
"ty_zwnr" : ty_zwnr,
|
|
"Label" : ty_zwnr_Label,
|
|
}} |