We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 157487e commit 73a1b65Copy full SHA for 73a1b65
js/core/src/plugin.ts
@@ -30,7 +30,7 @@ export interface PluginProvider {
30
| void
31
| Promise<InitializedPlugin | void>;
32
resolver?: (action: ActionType, target: string) => Promise<void>;
33
- listActions?: () => Promise<ActionMetadata[]>
+ listActions?: () => Promise<ActionMetadata[]>;
34
}
35
36
export interface InitializedPlugin {
js/genkit/src/genkit.ts
@@ -816,7 +816,7 @@ export class Genkit implements HasRegistry {
816
if (loadedPlugin.listActions) {
817
return await loadedPlugin.listActions();
818
819
- return []
+ return [];
820
},
821
});
822
0 commit comments