From 480a99acd133f529011ef9a6f7b84460d8f44323 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Sun, 15 Dec 2024 16:23:56 +0000 Subject: [PATCH] types: use `node:` prefix for builtins (#223) --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 28dfe36..360f3c1 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1,6 +1,6 @@ import * as connect from 'connect' import { FastifyPluginCallback } from 'fastify' -import * as http from 'http' +import * as http from 'node:http' declare module 'fastify' { interface FastifyInstance {