Skip to content

Commit

Permalink
types: use node: prefix for builtins
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Dec 15, 2024
1 parent cbc71bc commit 1522469
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion types/index-global-layout.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fastify from 'fastify'
import fastifyView, { FastifyViewOptions } from '..'
import { expectAssignable } from 'tsd'
import * as path from 'path'
import * as path from 'node:path'

interface Locals {
appVersion: 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,7 +1,7 @@
import fastify from 'fastify'
import fastifyView, { PointOfViewOptions, FastifyViewOptions } from '..'
import { expectAssignable, expectNotAssignable, expectDeprecated, expectType } from 'tsd'
import * as path from 'path'
import * as path from 'node:path'

interface Locals {
appVersion: string,
Expand Down

0 comments on commit 1522469

Please sign in to comment.