You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A script can be set to re-run automatically after some interval.
19
19
20
20
The script will only be re-run if the script filter is still active and the user hasn't changed the state of the filter by typing and triggering a re-run. For example, it could be used to update the progress of a particular task:
21
21
*/
22
22
readonlyrerunInterval?: number;
23
-
}
23
+
};
24
24
25
-
exportinterfaceCacheConfGetOptions{
25
+
exporttypeCacheConfGetOptions={
26
26
/**
27
27
Get the item for the key provided without taking the `maxAge` of the item into account.
Each item describes a result row displayed in Alfred.
129
129
*/
130
-
exportinterfaceScriptFilterItem{
130
+
exporttypeScriptFilterItem={
131
131
/**
132
132
This is a unique identifier for the item which allows help Alfred to learn about this item for subsequent sorting and ordering of the user's actioned results.
Copy file name to clipboardExpand all lines: readme.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@
17
17
18
18
## Prerequisites
19
19
20
-
You need [Node.js 14+](https://nodejs.org) and [Alfred 4 or later](https://www.alfredapp.com) with the paid [Powerpack](https://www.alfredapp.com/powerpack/) upgrade.
20
+
You need [Node.js 18+](https://nodejs.org) and [Alfred 4 or later](https://www.alfredapp.com) with the paid [Powerpack](https://www.alfredapp.com/powerpack/) upgrade.
0 commit comments