From ef61e6b3c6393e26149e491b297ef4ca4523cd5a Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Sun, 15 Dec 2024 16:12:29 +0000 Subject: [PATCH] types: use `node:` prefix for builtins --- types/index.test-d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/index.test-d.ts b/types/index.test-d.ts index f4281f6f..e2854d4a 100644 --- a/types/index.test-d.ts +++ b/types/index.test-d.ts @@ -1,7 +1,7 @@ import fastify, { FastifyReply, FastifyRequest, RawReplyDefaultExpression, RawServerBase, RequestGenericInterface, RouteGenericInterface } from "fastify"; -import * as http from 'http'; +import * as http from 'node:http'; import { IncomingHttpHeaders } from "http2"; -import * as https from 'https'; +import * as https from 'node:https'; import { AddressInfo } from "net"; import { expectType } from 'tsd'; import replyFrom, { FastifyReplyFromOptions } from "..";