import RoleLayout from './RoleLayout'; class FrameLayout { roles: RoleLayout[]; elevation: number; constructor(roles: RoleLayout[], elevation:number) { this.roles = roles; /** * How many levels above to display this frame. * Right above sentence is elevation-0, 1 more level above is elevation-1. * Multiple frames may occupy the same elevation as long as they do not collide. * @type {number} */ this.elevation = elevation; } } export default FrameLayout;