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

22 lines
490 B
TypeScript

import { Node } from 'cc';
interface ScrollView extends Node{
nodesType:{
"view" : ScrollView_view,
"content" : ScrollView_view_content,
}
}
interface ScrollView_view extends Node{
nodesType:{
"content" : ScrollView_view_content,
}
}
interface ScrollView_view_content extends Node{
}
declare global {
type tree_a_public_ScrollView = {
"ScrollView" : ScrollView,
"view" : ScrollView_view,
"content" : ScrollView_view_content,
}}