| 14 | export type SpaceId = 'code' | 'tools' | 'math' | 'notes' | 'http' | 'drawings' |
| 15 | |
| 16 | export interface SpaceDefinition { |
| 17 | id: SpaceId |
| 18 | label: string |
| 19 | tooltip: string |
| 20 | icon: Component |
| 21 | to: RouteLocationRaw |
| 22 | isActive: (routeName: RouteRecordName | null | undefined) => boolean |
| 23 | } |
| 24 | |
| 25 | function isRouteNameInSpace( |
| 26 | routeName: RouteRecordName | null | undefined, |
nothing calls this directly
no outgoing calls
no test coverage detected