Skip to content

Commit

Permalink
refactor: Split type importing
Browse files Browse the repository at this point in the history
  • Loading branch information
attakei committed Nov 18, 2024
1 parent 683ec81 commit 6c98a96
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { Buffer } from 'node:buffer';
import { Context, Hono } from 'hono';
import { parse, HTMLElement } from 'node-html-parser';
import type { Context } from 'hono';
import { Hono } from 'hono';
import type { HTMLElement } from 'node-html-parser';
import { parse } from 'node-html-parser';
import frontMatter from 'front-matter';
import { html, raw } from 'hono/html';
import { sentry } from '@hono/sentry';
Expand Down

0 comments on commit 6c98a96

Please sign in to comment.