@mintlify/validation 0.1.403 → 0.1.405
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mint-config/schemas/v2/index.d.ts +1498 -35
- package/dist/mint-config/schemas/v2/properties/contextual.d.ts +284 -3
- package/dist/mint-config/schemas/v2/properties/contextual.js +20 -1
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +214 -5
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +214 -5
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +214 -5
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +214 -5
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +214 -5
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +214 -5
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +170 -3
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +214 -5
- package/dist/mint-config/validateConfig.d.ts +308 -14
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/serverStaticProps.d.ts +0 -1
- package/package.json +3 -3
|
@@ -811,7 +811,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
811
811
|
};
|
|
812
812
|
} | undefined;
|
|
813
813
|
contextual?: {
|
|
814
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
814
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
815
|
+
href: (string | {
|
|
816
|
+
base: string;
|
|
817
|
+
query?: {
|
|
818
|
+
value: string;
|
|
819
|
+
key: string;
|
|
820
|
+
}[] | undefined;
|
|
821
|
+
}) & (string | {
|
|
822
|
+
base: string;
|
|
823
|
+
query?: {
|
|
824
|
+
value: string;
|
|
825
|
+
key: string;
|
|
826
|
+
}[] | undefined;
|
|
827
|
+
} | undefined);
|
|
828
|
+
title: string;
|
|
829
|
+
description: string;
|
|
830
|
+
icon?: string | {
|
|
831
|
+
name: string;
|
|
832
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
833
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
834
|
+
} | undefined;
|
|
835
|
+
})[];
|
|
815
836
|
} | undefined;
|
|
816
837
|
thumbnails?: {
|
|
817
838
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -1152,7 +1173,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1152
1173
|
};
|
|
1153
1174
|
} | undefined;
|
|
1154
1175
|
contextual?: {
|
|
1155
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
1176
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
1177
|
+
href: (string | {
|
|
1178
|
+
base: string;
|
|
1179
|
+
query?: {
|
|
1180
|
+
value: string;
|
|
1181
|
+
key: string;
|
|
1182
|
+
}[] | undefined;
|
|
1183
|
+
}) & (string | {
|
|
1184
|
+
base: string;
|
|
1185
|
+
query?: {
|
|
1186
|
+
value: string;
|
|
1187
|
+
key: string;
|
|
1188
|
+
}[] | undefined;
|
|
1189
|
+
} | undefined);
|
|
1190
|
+
title: string;
|
|
1191
|
+
description: string;
|
|
1192
|
+
icon?: string | {
|
|
1193
|
+
name: string;
|
|
1194
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1195
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1196
|
+
} | undefined;
|
|
1197
|
+
})[];
|
|
1156
1198
|
} | undefined;
|
|
1157
1199
|
thumbnails?: {
|
|
1158
1200
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -1493,7 +1535,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1493
1535
|
};
|
|
1494
1536
|
} | undefined;
|
|
1495
1537
|
contextual?: {
|
|
1496
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
1538
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
1539
|
+
href: (string | {
|
|
1540
|
+
base: string;
|
|
1541
|
+
query?: {
|
|
1542
|
+
value: string;
|
|
1543
|
+
key: string;
|
|
1544
|
+
}[] | undefined;
|
|
1545
|
+
}) & (string | {
|
|
1546
|
+
base: string;
|
|
1547
|
+
query?: {
|
|
1548
|
+
value: string;
|
|
1549
|
+
key: string;
|
|
1550
|
+
}[] | undefined;
|
|
1551
|
+
} | undefined);
|
|
1552
|
+
title: string;
|
|
1553
|
+
description: string;
|
|
1554
|
+
icon?: string | {
|
|
1555
|
+
name: string;
|
|
1556
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1557
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1558
|
+
} | undefined;
|
|
1559
|
+
})[];
|
|
1497
1560
|
} | undefined;
|
|
1498
1561
|
thumbnails?: {
|
|
1499
1562
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -1834,7 +1897,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1834
1897
|
};
|
|
1835
1898
|
} | undefined;
|
|
1836
1899
|
contextual?: {
|
|
1837
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
1900
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
1901
|
+
href: (string | {
|
|
1902
|
+
base: string;
|
|
1903
|
+
query?: {
|
|
1904
|
+
value: string;
|
|
1905
|
+
key: string;
|
|
1906
|
+
}[] | undefined;
|
|
1907
|
+
}) & (string | {
|
|
1908
|
+
base: string;
|
|
1909
|
+
query?: {
|
|
1910
|
+
value: string;
|
|
1911
|
+
key: string;
|
|
1912
|
+
}[] | undefined;
|
|
1913
|
+
} | undefined);
|
|
1914
|
+
title: string;
|
|
1915
|
+
description: string;
|
|
1916
|
+
icon?: string | {
|
|
1917
|
+
name: string;
|
|
1918
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1919
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1920
|
+
} | undefined;
|
|
1921
|
+
})[];
|
|
1838
1922
|
} | undefined;
|
|
1839
1923
|
thumbnails?: {
|
|
1840
1924
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -2175,7 +2259,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2175
2259
|
};
|
|
2176
2260
|
} | undefined;
|
|
2177
2261
|
contextual?: {
|
|
2178
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
2262
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
2263
|
+
href: (string | {
|
|
2264
|
+
base: string;
|
|
2265
|
+
query?: {
|
|
2266
|
+
value: string;
|
|
2267
|
+
key: string;
|
|
2268
|
+
}[] | undefined;
|
|
2269
|
+
}) & (string | {
|
|
2270
|
+
base: string;
|
|
2271
|
+
query?: {
|
|
2272
|
+
value: string;
|
|
2273
|
+
key: string;
|
|
2274
|
+
}[] | undefined;
|
|
2275
|
+
} | undefined);
|
|
2276
|
+
title: string;
|
|
2277
|
+
description: string;
|
|
2278
|
+
icon?: string | {
|
|
2279
|
+
name: string;
|
|
2280
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2281
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2282
|
+
} | undefined;
|
|
2283
|
+
})[];
|
|
2179
2284
|
} | undefined;
|
|
2180
2285
|
thumbnails?: {
|
|
2181
2286
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -2516,7 +2621,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2516
2621
|
};
|
|
2517
2622
|
} | undefined;
|
|
2518
2623
|
contextual?: {
|
|
2519
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
2624
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
2625
|
+
href: (string | {
|
|
2626
|
+
base: string;
|
|
2627
|
+
query?: {
|
|
2628
|
+
value: string;
|
|
2629
|
+
key: string;
|
|
2630
|
+
}[] | undefined;
|
|
2631
|
+
}) & (string | {
|
|
2632
|
+
base: string;
|
|
2633
|
+
query?: {
|
|
2634
|
+
value: string;
|
|
2635
|
+
key: string;
|
|
2636
|
+
}[] | undefined;
|
|
2637
|
+
} | undefined);
|
|
2638
|
+
title: string;
|
|
2639
|
+
description: string;
|
|
2640
|
+
icon?: string | {
|
|
2641
|
+
name: string;
|
|
2642
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2643
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2644
|
+
} | undefined;
|
|
2645
|
+
})[];
|
|
2520
2646
|
} | undefined;
|
|
2521
2647
|
thumbnails?: {
|
|
2522
2648
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -2857,7 +2983,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2857
2983
|
};
|
|
2858
2984
|
} | undefined;
|
|
2859
2985
|
contextual?: {
|
|
2860
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
2986
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
2987
|
+
href: (string | {
|
|
2988
|
+
base: string;
|
|
2989
|
+
query?: {
|
|
2990
|
+
value: string;
|
|
2991
|
+
key: string;
|
|
2992
|
+
}[] | undefined;
|
|
2993
|
+
}) & (string | {
|
|
2994
|
+
base: string;
|
|
2995
|
+
query?: {
|
|
2996
|
+
value: string;
|
|
2997
|
+
key: string;
|
|
2998
|
+
}[] | undefined;
|
|
2999
|
+
} | undefined);
|
|
3000
|
+
title: string;
|
|
3001
|
+
description: string;
|
|
3002
|
+
icon?: string | {
|
|
3003
|
+
name: string;
|
|
3004
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3005
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3006
|
+
} | undefined;
|
|
3007
|
+
})[];
|
|
2861
3008
|
} | undefined;
|
|
2862
3009
|
thumbnails?: {
|
|
2863
3010
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -3201,7 +3348,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3201
3348
|
};
|
|
3202
3349
|
} | undefined;
|
|
3203
3350
|
contextual?: {
|
|
3204
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
3351
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
3352
|
+
href: (string | {
|
|
3353
|
+
base: string;
|
|
3354
|
+
query?: {
|
|
3355
|
+
value: string;
|
|
3356
|
+
key: string;
|
|
3357
|
+
}[] | undefined;
|
|
3358
|
+
}) & (string | {
|
|
3359
|
+
base: string;
|
|
3360
|
+
query?: {
|
|
3361
|
+
value: string;
|
|
3362
|
+
key: string;
|
|
3363
|
+
}[] | undefined;
|
|
3364
|
+
} | undefined);
|
|
3365
|
+
title: string;
|
|
3366
|
+
description: string;
|
|
3367
|
+
icon?: string | {
|
|
3368
|
+
name: string;
|
|
3369
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3370
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3371
|
+
} | undefined;
|
|
3372
|
+
})[];
|
|
3205
3373
|
} | undefined;
|
|
3206
3374
|
thumbnails?: {
|
|
3207
3375
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -3542,7 +3710,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3542
3710
|
};
|
|
3543
3711
|
} | undefined;
|
|
3544
3712
|
contextual?: {
|
|
3545
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
3713
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
3714
|
+
href: (string | {
|
|
3715
|
+
base: string;
|
|
3716
|
+
query?: {
|
|
3717
|
+
value: string;
|
|
3718
|
+
key: string;
|
|
3719
|
+
}[] | undefined;
|
|
3720
|
+
}) & (string | {
|
|
3721
|
+
base: string;
|
|
3722
|
+
query?: {
|
|
3723
|
+
value: string;
|
|
3724
|
+
key: string;
|
|
3725
|
+
}[] | undefined;
|
|
3726
|
+
} | undefined);
|
|
3727
|
+
title: string;
|
|
3728
|
+
description: string;
|
|
3729
|
+
icon?: string | {
|
|
3730
|
+
name: string;
|
|
3731
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3732
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3733
|
+
} | undefined;
|
|
3734
|
+
})[];
|
|
3546
3735
|
} | undefined;
|
|
3547
3736
|
thumbnails?: {
|
|
3548
3737
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -3883,7 +4072,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3883
4072
|
};
|
|
3884
4073
|
} | undefined;
|
|
3885
4074
|
contextual?: {
|
|
3886
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
4075
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
4076
|
+
href: (string | {
|
|
4077
|
+
base: string;
|
|
4078
|
+
query?: {
|
|
4079
|
+
value: string;
|
|
4080
|
+
key: string;
|
|
4081
|
+
}[] | undefined;
|
|
4082
|
+
}) & (string | {
|
|
4083
|
+
base: string;
|
|
4084
|
+
query?: {
|
|
4085
|
+
value: string;
|
|
4086
|
+
key: string;
|
|
4087
|
+
}[] | undefined;
|
|
4088
|
+
} | undefined);
|
|
4089
|
+
title: string;
|
|
4090
|
+
description: string;
|
|
4091
|
+
icon?: string | {
|
|
4092
|
+
name: string;
|
|
4093
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4094
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4095
|
+
} | undefined;
|
|
4096
|
+
})[];
|
|
3887
4097
|
} | undefined;
|
|
3888
4098
|
thumbnails?: {
|
|
3889
4099
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -4224,7 +4434,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4224
4434
|
};
|
|
4225
4435
|
} | undefined;
|
|
4226
4436
|
contextual?: {
|
|
4227
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
4437
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
4438
|
+
href: (string | {
|
|
4439
|
+
base: string;
|
|
4440
|
+
query?: {
|
|
4441
|
+
value: string;
|
|
4442
|
+
key: string;
|
|
4443
|
+
}[] | undefined;
|
|
4444
|
+
}) & (string | {
|
|
4445
|
+
base: string;
|
|
4446
|
+
query?: {
|
|
4447
|
+
value: string;
|
|
4448
|
+
key: string;
|
|
4449
|
+
}[] | undefined;
|
|
4450
|
+
} | undefined);
|
|
4451
|
+
title: string;
|
|
4452
|
+
description: string;
|
|
4453
|
+
icon?: string | {
|
|
4454
|
+
name: string;
|
|
4455
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4456
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4457
|
+
} | undefined;
|
|
4458
|
+
})[];
|
|
4228
4459
|
} | undefined;
|
|
4229
4460
|
thumbnails?: {
|
|
4230
4461
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -4565,7 +4796,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4565
4796
|
};
|
|
4566
4797
|
} | undefined;
|
|
4567
4798
|
contextual?: {
|
|
4568
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
4799
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
4800
|
+
href: (string | {
|
|
4801
|
+
base: string;
|
|
4802
|
+
query?: {
|
|
4803
|
+
value: string;
|
|
4804
|
+
key: string;
|
|
4805
|
+
}[] | undefined;
|
|
4806
|
+
}) & (string | {
|
|
4807
|
+
base: string;
|
|
4808
|
+
query?: {
|
|
4809
|
+
value: string;
|
|
4810
|
+
key: string;
|
|
4811
|
+
}[] | undefined;
|
|
4812
|
+
} | undefined);
|
|
4813
|
+
title: string;
|
|
4814
|
+
description: string;
|
|
4815
|
+
icon?: string | {
|
|
4816
|
+
name: string;
|
|
4817
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4818
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4819
|
+
} | undefined;
|
|
4820
|
+
})[];
|
|
4569
4821
|
} | undefined;
|
|
4570
4822
|
thumbnails?: {
|
|
4571
4823
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -4906,7 +5158,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4906
5158
|
};
|
|
4907
5159
|
} | undefined;
|
|
4908
5160
|
contextual?: {
|
|
4909
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
5161
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
5162
|
+
href: (string | {
|
|
5163
|
+
base: string;
|
|
5164
|
+
query?: {
|
|
5165
|
+
value: string;
|
|
5166
|
+
key: string;
|
|
5167
|
+
}[] | undefined;
|
|
5168
|
+
}) & (string | {
|
|
5169
|
+
base: string;
|
|
5170
|
+
query?: {
|
|
5171
|
+
value: string;
|
|
5172
|
+
key: string;
|
|
5173
|
+
}[] | undefined;
|
|
5174
|
+
} | undefined);
|
|
5175
|
+
title: string;
|
|
5176
|
+
description: string;
|
|
5177
|
+
icon?: string | {
|
|
5178
|
+
name: string;
|
|
5179
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5180
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5181
|
+
} | undefined;
|
|
5182
|
+
})[];
|
|
4910
5183
|
} | undefined;
|
|
4911
5184
|
thumbnails?: {
|
|
4912
5185
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -5247,7 +5520,28 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5247
5520
|
};
|
|
5248
5521
|
} | undefined;
|
|
5249
5522
|
contextual?: {
|
|
5250
|
-
options: ("copy" | "view" | "chatgpt" | "claude"
|
|
5523
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | {
|
|
5524
|
+
href: (string | {
|
|
5525
|
+
base: string;
|
|
5526
|
+
query?: {
|
|
5527
|
+
value: string;
|
|
5528
|
+
key: string;
|
|
5529
|
+
}[] | undefined;
|
|
5530
|
+
}) & (string | {
|
|
5531
|
+
base: string;
|
|
5532
|
+
query?: {
|
|
5533
|
+
value: string;
|
|
5534
|
+
key: string;
|
|
5535
|
+
}[] | undefined;
|
|
5536
|
+
} | undefined);
|
|
5537
|
+
title: string;
|
|
5538
|
+
description: string;
|
|
5539
|
+
icon?: string | {
|
|
5540
|
+
name: string;
|
|
5541
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5542
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5543
|
+
} | undefined;
|
|
5544
|
+
})[];
|
|
5251
5545
|
} | undefined;
|
|
5252
5546
|
thumbnails?: {
|
|
5253
5547
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|