Skip to content

Commit 5406f1d

Browse files
committed
Use 'export * from' for public API instead of 'export ='
1 parent 5043c50 commit 5406f1d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/typescript/typescript.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {
22
Debug,
33
LogLevel,
44
} from "./_namespaces/ts";
5-
import * as ts from "./_namespaces/ts";
65

76
// enable deprecation logging
87
declare const console: any;
@@ -23,4 +22,4 @@ if (typeof console !== "undefined") {
2322
};
2423
}
2524

26-
export = ts;
25+
export * from "./_namespaces/ts";

0 commit comments

Comments
 (0)