2
0
mirror of https://github.com/iconify/iconify.git synced 2025-01-12 01:45:41 +00:00

Add SVG generator link to API provider data

This commit is contained in:
Vjacheslav Trushkin 2021-08-07 18:27:40 +03:00
parent d1284f4c95
commit b6578679e2
3 changed files with 7 additions and 3 deletions

View File

@ -1,12 +1,12 @@
{
"name": "@iconify/types",
"version": "1.0.6",
"version": "1.0.7",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@iconify/types",
"version": "1.0.6",
"version": "1.0.7",
"license": "(Apache-2.0 OR GPL-2.0)",
"devDependencies": {
"typescript": "^4.1.2"

View File

@ -1,7 +1,7 @@
{
"name": "@iconify/types",
"description": "Types for Iconify data",
"version": "1.0.6",
"version": "1.0.7",
"author": "Vjacheslav Trushkin",
"license": "(Apache-2.0 OR GPL-2.0)",
"main": "./index.js",

View File

@ -37,4 +37,8 @@ export interface APIProviderRawData {
// NPM packages for icons, used when showing code samples
npm?: APIProviderRawDataNPM;
// SVG generator URL, including full host name, {prefix} and {name} variables
// Example: 'https://api.iconify.design/{prefix}/{name}.svg'
svg?: string;
}