HJ_Client/nodeTree/comtips.d.ts
DESKTOP-15R5JU0\legu 62fef0360c init
2023-11-17 14:13:11 +08:00

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,
}}