0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00

fix(node): Fix http import to not be type-only (#6650)

This commit is contained in:
Erika 2023-03-24 17:31:45 +01:00 committed by GitHub
parent 8a721173b3
commit a0b6aac2f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@ import type { RouteData } from '../../@types/astro';
import type { SerializedSSRManifest, SSRManifest } from './types';
import * as fs from 'fs';
import type { IncomingMessage } from 'http';
import { IncomingMessage } from 'http';
import { TLSSocket } from 'tls';
import { deserializeManifest } from './common.js';
import { App, type MatchOptions } from './index.js';