1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00
budibase/packages/types/src/documents/app/screen.ts

13 lines
227 B
TypeScript
Raw Normal View History

2022-05-21 08:16:29 +12:00
import { Document } from "../document"
2022-05-20 23:29:31 +12:00
2022-06-01 08:04:41 +12:00
export interface Screen extends Document {
layoutId: string
showNavigation?: boolean
width?: string
2022-06-01 08:04:41 +12:00
routing: {
route: string
roleId: string
homeScreen?: boolean
2022-06-01 08:04:41 +12:00
}
}