Files
infocom-systems-design/node_modules/@iconify/utils/lib/misc/licenses.d.ts
2025-10-03 22:27:28 +03:00

12 lines
336 B
TypeScript

interface LicenseInfo {
attribution: boolean;
commercial: boolean;
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 };