@nodesecure/scanner
Version:
A package API to run a static analysis of your module's dependencies.
9 lines • 476 B
TypeScript
import { type IlluminatedContact } from "@nodesecure/contact";
import type { Contact } from "@nodesecure/npm-types";
import type { Dependency, GlobalWarning } from "../types.js";
export interface GetWarningsResult {
warnings: GlobalWarning[];
illuminated: IlluminatedContact[];
}
export declare function getDependenciesWarnings(dependenciesMap: Map<string, Dependency>, highlightContacts?: Contact[]): Promise<GetWarningsResult>;
//# sourceMappingURL=warnings.d.ts.map