UNPKG
khulnasoft.com
Version:
latest (1.10.0)
1.10.0
1.0.0
Development tools for Khulnasoft CMS integration
khulnasoft.com
khulnasoft.com
/
types
/
core
/
find-dependencies.d.ts
8 lines
(7 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
DevToolsSys
}
from
"../types"
;
export
interface
Package
{
name
:
string
;
subPackages
:
string
[]; }
export
type
DependencyStructure
=
Package
[];
export
declare
function
findAllDependencies
(
sys
:
DevToolsSys
,
rootDir
:
string
):
Promise
<
DependencyStructure
>;