Skip to content

Commit

Permalink
fix(vercel#37524): type hack for interopClientDefaultExport
Browse files Browse the repository at this point in the history
  • Loading branch information
SukkaW committed Jun 10, 2022
1 parent 78cbfa0 commit 42c608f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/next/config.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import getConfig from './dist/shared/lib/runtime-config'
export * from './dist/shared/lib/runtime-config'
export default getConfig
export = getConfig
1 change: 1 addition & 0 deletions packages/next/dynamic.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import dynamic from './dist/shared/lib/dynamic'
export * from './dist/shared/lib/dynamic'
export default dynamic
export = dynamic
1 change: 1 addition & 0 deletions packages/next/head.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Head from './dist/shared/lib/head'
export * from './dist/shared/lib/head'
export default Head
export = Head
1 change: 1 addition & 0 deletions packages/next/image.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Image from './dist/client/image'
export * from './dist/client/image'
export default Image
export = Image
1 change: 1 addition & 0 deletions packages/next/jest.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import nextJest from './dist/build/jest/jest'
export * from './dist/build/jest/jest'
export default nextJest
export = nextJest
1 change: 1 addition & 0 deletions packages/next/script.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Script from './dist/client/script'
export * from './dist/client/script'
export default Script
export = Script

0 comments on commit 42c608f

Please sign in to comment.