astro-ghostcms/.pnpm-store/v3/files/16/6e6e398e34a7a1dcd8fccf355ec...

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 };