Files
Camilou.fr/VUEJS/myapp/node_modules/@iconify/utils/lib/misc/licenses.d.ts
T
Camilla Schoeser 6a71f91e2f ajout du site
2026-05-29 21:38:59 +02:00

15 lines
424 B
TypeScript

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