UNPKG

license-kit

Version:

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

11 lines (10 loc) 281 B
/** * Enumerates all valid CLI format flag values * * @see {@link Format} */ export declare const validFormats: readonly ["json", "about-json", "text", "markdown"]; /** * Type of CLI flag that controls the output format */ export type Format = (typeof validFormats)[number];