Skip to content

Commit aad61a3

Browse files
committed
Remove type from export in d.ts files
In TypeScript 5.0.0 this is now a supported thing so it causes the imported values to be unusable, it seems like previous versions of TypeScript just ignored the type and would treat the import as a value Fixes auth0#1035
1 parent 8129dd7 commit aad61a3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export type * from './dist/client';
1+
export * from './dist/client';

edge.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export type * from './dist/edge';
1+
export * from './dist/edge';

testing.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export type * from './dist/helpers/testing';
1+
export * from './dist/helpers/testing';

0 commit comments

Comments
 (0)