UNPKG

@nodesecure/scanner

Version:

A package API to run a static analysis of your module's dependencies.

10 lines 461 B
import type { ManifestVersion, PackageJSON } from "@nodesecure/npm-types"; import { Logger } from "./class/logger.class.js"; import type { Options, Payload } from "./types.js"; type WalkerOptions = Omit<Options, "registry"> & { registry: string; location?: string; }; export declare function depWalker(manifest: PackageJSON | ManifestVersion, options: WalkerOptions, logger?: Logger): Promise<Payload>; export {}; //# sourceMappingURL=depWalker.d.ts.map