| 1 | import type { ComputedRef } from '@vue/reactivity' |
| 2 | import type { SlidevContextNav } from '../composables/useNav' |
| 3 | import type { configs } from '../env' |
| 4 | |
| 5 | export interface SlidevContext { |
| 6 | nav: SlidevContextNav |
| 7 | configs: typeof configs |
| 8 | themeConfigs: ComputedRef<typeof configs['themeConfig']> |
| 9 | } |
| 10 |