UNPKG

@nodesecure/scanner

Version:

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

9 lines 499 B
import { type IlluminatedContact } from "@nodesecure/contact"; import type { Contact } from "@nodesecure/npm-types"; import type { Dependency, GlobalWarning } from "../types.ts"; export interface GetWarningsResult { warnings: GlobalWarning[]; illuminated: IlluminatedContact[]; } export declare function getDependenciesWarnings(dependenciesMap: Map<string, Dependency>, highlightContacts?: Contact[], isLocalScan?: boolean): Promise<GetWarningsResult>; //# sourceMappingURL=warnings.d.ts.map