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 {
4
4
}
5
5
type Tree = TreeInnerNode | string ;
6
6
7
- interface Options {
7
+ export interface Options {
8
8
filename : string ;
9
9
directory : string ;
10
10
visited ?: Tree ;
@@ -23,10 +23,12 @@ declare namespace dependencyTree {
23
23
clone : ( ) => Config ;
24
24
}
25
25
26
- function toList ( options : Options ) : string [ ] ;
27
- function _getDependencies ( config : Config ) : string [ ] ;
26
+ function toList ( options : Options ) : string [ ] ;
27
+ function _getDependencies ( config : Config ) : string [ ] ;
28
28
}
29
29
30
- declare function dependencyTree ( options : dependencyTree . Options ) : dependencyTree . Tree ;
30
+ declare function dependencyTree (
31
+ options : dependencyTree . Options
32
+ ) : dependencyTree . Tree ;
31
33
32
34
export = dependencyTree ;
You can’t perform that action at this time.
0 commit comments