Skip to content

Commit 7a6aea7

Browse files
authored
Use "import type" for all types (#8827)
1 parent d261819 commit 7a6aea7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/vite/src/triggerRouteHooks.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
import { Request } from 'express'
22
import { ViteDevServer } from 'vite'
33

4-
import { MetaHook, TagDescriptor } from '@redwoodjs/web'
5-
import type { RouteHookEvent, RouteHookOutput } from '@redwoodjs/web'
4+
import type {
5+
MetaHook,
6+
RouteHookEvent,
7+
RouteHookOutput,
8+
TagDescriptor,
9+
} from '@redwoodjs/web'
610

711
interface RouteHooks {
812
meta?: MetaHook

0 commit comments

Comments
 (0)