licenses.d.ts 349 B

12345678910111213
  1. interface LicenseInfo {
  2. attribution: boolean;
  3. commercial: boolean;
  4. sameLicense?: boolean;
  5. }
  6. /**
  7. * Data for open source licenses used by icon sets in `@iconify/json` package and smaller packages
  8. *
  9. * Key is SPDX license identifier
  10. */
  11. declare const licensesData: Record<string, LicenseInfo>;
  12. export { type LicenseInfo, licensesData };