1
0
Fork 0
mirror of synced 2024-09-19 02:39:37 +12:00
budibase/qa-core/src/types/screens.ts
2023-05-17 21:32:50 +01:00

32 lines
504 B
TypeScript

export interface ScreenRequest {
showNavigation: boolean
width: string
name: string
template: string
props: ScreenProps
routing: ScreenRouting
}
interface ScreenProps {
_id: string
_component: string
_styles: {
normal: {}
hover: {}
active: {}
selected: {}
}
_children: []
_instanceName: string
direction: string
hAlign: string
vAlign: string
size: string
gap: string
}
interface ScreenRouting {
route: string
roleId: string
homeScreen: boolean
}