Skip to content

Commit ef7de96

Browse files
committed
fixed imports
1 parent 120a2cc commit ef7de96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/serve-static.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Context, Env, MiddlewareHandler } from 'hono'
22
import { getMimeType } from 'hono/utils/mime'
3-
import { ReadStream, Stats, realpathSync } from 'node:fs'
4-
import { createReadStream, lstatSync, existsSync } from 'node:fs'
3+
import type { ReadStream, Stats } from 'node:fs'
4+
import { createReadStream, lstatSync, existsSync, realpathSync } from 'node:fs'
55
import { join } from 'node:path'
66

77
export type ServeStaticOptions<E extends Env = Env> = {

0 commit comments

Comments
 (0)