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

13 lines
228 B
TypeScript

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