typed-router.d.ts 777 B

12345678910111213141516171819202122232425
  1. /* eslint-disable */
  2. /* prettier-ignore */
  3. // @ts-nocheck
  4. // Generated by unplugin-vue-router. ‼️ DO NOT MODIFY THIS FILE ‼️
  5. // It's recommended to commit this file.
  6. // Make sure to add this file to your tsconfig.json file as an "includes" or "files" entry.
  7. declare module 'vue-router/auto-routes' {
  8. import type {
  9. RouteRecordInfo,
  10. ParamValue,
  11. ParamValueOneOrMore,
  12. ParamValueZeroOrMore,
  13. ParamValueZeroOrOne,
  14. } from 'unplugin-vue-router/types'
  15. /**
  16. * Route name map generated by unplugin-vue-router
  17. */
  18. export interface RouteNamedMap {
  19. '/': RouteRecordInfo<'/', '/', Record<never, never>, Record<never, never>>,
  20. '/[...all]': RouteRecordInfo<'/[...all]', '/:all(.*)', { all: ParamValue<true> }, { all: ParamValue<false> }>,
  21. }
  22. }