@raycast/api 1.39.1 → 1.39.2
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/api.d.ts +2 -2
- package/package.json +1 -1
- package/types/index.d.ts +2 -2
package/api.d.ts
CHANGED
|
@@ -4766,7 +4766,7 @@ declare interface ItemProps extends ActionsInterface {
|
|
|
4766
4766
|
* An optional subtitle displayed next to the main title, optionally with a tooltip.
|
|
4767
4767
|
*/
|
|
4768
4768
|
subtitle?: string | {
|
|
4769
|
-
value: string;
|
|
4769
|
+
value: string | undefined | null;
|
|
4770
4770
|
tooltip: string;
|
|
4771
4771
|
};
|
|
4772
4772
|
/**
|
|
@@ -4778,7 +4778,7 @@ declare interface ItemProps extends ActionsInterface {
|
|
|
4778
4778
|
* An optional icon displayed for the list item.
|
|
4779
4779
|
*/
|
|
4780
4780
|
icon?: Image.ImageLike | {
|
|
4781
|
-
value: Image.ImageLike;
|
|
4781
|
+
value: Image.ImageLike | undefined | null;
|
|
4782
4782
|
tooltip: string;
|
|
4783
4783
|
};
|
|
4784
4784
|
/**
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -4766,7 +4766,7 @@ declare interface ItemProps extends ActionsInterface {
|
|
|
4766
4766
|
* An optional subtitle displayed next to the main title, optionally with a tooltip.
|
|
4767
4767
|
*/
|
|
4768
4768
|
subtitle?: string | {
|
|
4769
|
-
value: string;
|
|
4769
|
+
value: string | undefined | null;
|
|
4770
4770
|
tooltip: string;
|
|
4771
4771
|
};
|
|
4772
4772
|
/**
|
|
@@ -4778,7 +4778,7 @@ declare interface ItemProps extends ActionsInterface {
|
|
|
4778
4778
|
* An optional icon displayed for the list item.
|
|
4779
4779
|
*/
|
|
4780
4780
|
icon?: Image.ImageLike | {
|
|
4781
|
-
value: Image.ImageLike;
|
|
4781
|
+
value: Image.ImageLike | undefined | null;
|
|
4782
4782
|
tooltip: string;
|
|
4783
4783
|
};
|
|
4784
4784
|
/**
|