15 lines
424 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
interface LicenseInfo {
/** Requires attribution */
attribution: boolean;
/** Allows commercial use */
commercial: boolean;
/** Keep same license */
sameLicense?: boolean;
}
/**
* Data for open source licenses used by icon sets in `@iconify/json` package and smaller packages
*
* Key is SPDX license identifier
*/
declare const licensesData: Record<string, LicenseInfo>;
export { LicenseInfo, licensesData };