UNPKG

license-kit

Version:

Aggregate license notes of OSS libraries used in your Node.js project, analyze & visualize OSS licenses with AI-turbocharged tooling

13 lines (12 loc) 432 B
import { type Types } from '@callstack/licenses'; import type { CLIVisualizeOptions } from '../types/CLIOptions'; export type LicensesMappingResult = { licenses: Types.AggregatedLicensesMapping; repoRootPath: string; projectName: string; }; export declare function generateLicensesMapping(options: CLIVisualizeOptions): { licenses: Types.AggregatedLicensesMapping; repoRootPath: string; projectName: any; };