Skip to content

Commit 73a1b65

Browse files
committed
fmt
1 parent 157487e commit 73a1b65

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

js/core/src/plugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export interface PluginProvider {
3030
| void
3131
| Promise<InitializedPlugin | void>;
3232
resolver?: (action: ActionType, target: string) => Promise<void>;
33-
listActions?: () => Promise<ActionMetadata[]>
33+
listActions?: () => Promise<ActionMetadata[]>;
3434
}
3535

3636
export interface InitializedPlugin {

js/genkit/src/genkit.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ export class Genkit implements HasRegistry {
816816
if (loadedPlugin.listActions) {
817817
return await loadedPlugin.listActions();
818818
}
819-
return []
819+
return [];
820820
},
821821
});
822822
});

0 commit comments

Comments
 (0)