File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ declare namespace dependencyTree {
44 }
55 type Tree = TreeInnerNode | string ;
66
7- interface Options {
7+ export interface Options {
88 filename : string ;
99 directory : string ;
1010 visited ?: Tree ;
@@ -23,10 +23,12 @@ declare namespace dependencyTree {
2323 clone : ( ) => Config ;
2424 }
2525
26- function toList ( options : Options ) : string [ ] ;
27- function _getDependencies ( config : Config ) : string [ ] ;
26+ function toList ( options : Options ) : string [ ] ;
27+ function _getDependencies ( config : Config ) : string [ ] ;
2828}
2929
30- declare function dependencyTree ( options : dependencyTree . Options ) : dependencyTree . Tree ;
30+ declare function dependencyTree (
31+ options : dependencyTree . Options
32+ ) : dependencyTree . Tree ;
3133
3234export = dependencyTree ;
You can’t perform that action at this time.
0 commit comments