1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00
budibase/packages/types/src/documents/app/screen.ts
2022-06-15 15:56:00 +01:00

13 lines
227 B
TypeScript

import { Document } from "../document"
export interface Screen extends Document {
layoutId: string
showNavigation?: boolean
width?: string
routing: {
route: string
roleId: string
homeScreen?: boolean
}
}