Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

types: use node: prefix for builtins #82

Merged
merged 1 commit into from
Dec 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import type {
RawServerBase,
RawServerDefault,
} from 'fastify'
import * as http from 'http'
import * as http2 from 'http2'
import * as https from 'https'
import * as http from 'node:http'
import * as http2 from 'node:http2'
import * as https from 'node:https'

export type RestartHook = (
instance: FastifyInstance,
Expand Down
2 changes: 1 addition & 1 deletion types/index.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { fastify, FastifyInstance, FastifyServerOptions } from 'fastify'
import { expectAssignable, expectType } from 'tsd'
// eslint-disable-next-line @typescript-eslint/no-unused-vars -- ApplicationFactory is used in commented out test
import { restartable, ApplicationFactory } from './index'
import type { Http2Server } from 'http2'
import type { Http2Server } from 'node:http2'

type Fastify = typeof fastify

Expand Down
Loading