UNPKG

snyk-resolve-deps

Version:

Resolves a node package tree with combined support for both npm@2 and npm@3.

14 lines (13 loc) 338 B
import { DepType, HasDependencySpecs } from "./types"; declare function depTypes(depName: string, pkg: HasDependencySpecs): { type: string; from: string; bundled: boolean; }; declare namespace depTypes { var EXTRANEOUS: DepType; var OPTIONAL: DepType; var PROD: DepType; var DEV: DepType; } export = depTypes;