14 lines
344 B
Plaintext
14 lines
344 B
Plaintext
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 };
|