fix(plugin): export Promise ToolEditor

This commit is contained in:
Kit Langton 2026-09-02 21:40:03 -04:00 committed by GitHub
parent d9c85d8d95
commit 5f1d74fd3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,7 +22,7 @@ export type Info<
) => Promise<Tool.Result<Output>>
}
interface ToolEditor {
export interface ToolEditor {
list(): readonly (Info & { readonly id: string })[]
get(id: string): (Info & { readonly id: string }) | undefined
namespace(namespace: Tool.Namespace): void