Skip to content

Commit

Permalink
Use "import type" for all types (redwoodjs#8827)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe committed Jul 5, 2023
1 parent d261819 commit 7a6aea7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/vite/src/triggerRouteHooks.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import { Request } from 'express'
import { ViteDevServer } from 'vite'

import { MetaHook, TagDescriptor } from '@redwoodjs/web'
import type { RouteHookEvent, RouteHookOutput } from '@redwoodjs/web'
import type {
MetaHook,
RouteHookEvent,
RouteHookOutput,
TagDescriptor,
} from '@redwoodjs/web'

interface RouteHooks {
meta?: MetaHook
Expand Down

0 comments on commit 7a6aea7

Please sign in to comment.