Skip to content

Commit

Permalink
types: use node: prefix for builtins (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs authored Dec 15, 2024
1 parent f77a829 commit 768f688
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IncomingMessage } from 'http'
import { IncomingMessage } from 'node:http'

type Forwarded = (req: IncomingMessage) => string[]

Expand Down
2 changes: 1 addition & 1 deletion types/index.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IncomingMessage } from 'http'
import { IncomingMessage } from 'node:http'
import { expectError, expectType } from 'tsd'
import { forwarded } from '..'
import forwardedESM from '..'
Expand Down

0 comments on commit 768f688

Please sign in to comment.