Skip to content

Commit

Permalink
docs: fixed consistent type imports warning (QwikDev#2578)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshmangalam authored Jan 9, 2023
1 parent 4a9f4cd commit bd9baa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion starters/apps/base/src/entry.dev.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* - More code is transferred to the browser than in SSR mode.
* - Optimizer/Serialization/Deserialization code is not exercised!
*/
import { render, RenderOptions } from '@builder.io/qwik';
import { render, type RenderOptions } from '@builder.io/qwik';
import Root from './root';

export default function (opts: RenderOptions) {
Expand Down
2 changes: 1 addition & 1 deletion starters/apps/base/src/entry.ssr.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* - npm run build
*
*/
import { renderToStream, RenderToStreamOptions } from '@builder.io/qwik/server';
import { renderToStream, type RenderToStreamOptions } from '@builder.io/qwik/server';
import { manifest } from '@qwik-client-manifest';
import Root from './root';

Expand Down

0 comments on commit bd9baa0

Please sign in to comment.