0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00

fix: Enforce the usage of type imports when possible (#6502)

This commit is contained in:
Erika 2023-03-10 16:19:57 +01:00 committed by GitHub
parent 922c163891
commit cf2241246c

View file

@ -1,5 +1,5 @@
import type { CreatePreviewServer } from 'astro';
import http from 'http';
import type http from 'http';
import { fileURLToPath } from 'url';
import { createServer } from './http-server.js';
import type { createExports } from './server';