1
0
Fork 0
mirror of synced 2024-09-20 03:08:18 +12:00
budibase/qa-core/src/types/screens.ts

33 lines
504 B
TypeScript
Raw Normal View History

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
}