Skip to content

Commit a654384

Browse files
committed
fix: export Pkg & PkgInfo TS types
these are used in the already exported `DepGraph` type, and are useful to the consumers of the lib
1 parent 5910392 commit a654384

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/index.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
import 'source-map-support/register';
22

3-
export { DepGraphData, DepGraph, PkgManager } from './core/types';
3+
export {
4+
DepGraph,
5+
DepGraphData,
6+
Pkg,
7+
PkgInfo,
8+
PkgManager,
9+
} from './core/types';
410
export { createFromJSON } from './core/create-from-json';
511
export { DepGraphBuilder } from './core/builder';
612

0 commit comments

Comments
 (0)