1export type ViewMode = 'shaded' | 'wire' | 'both' | 'points' 3export const VIEW_MODES: { id: ViewMode; label: string }[] = [ 4 { id: 'shaded', label: 'Shaded' }, 5 { id: 'wire', label: 'Wire' }, 6 { id: 'both', label: 'Both' }, 7 { id: 'points', label: 'Points' },