mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-05 22:04:01 +00:00
5 lines
120 B
TypeScript
5 lines
120 B
TypeScript
import type { Tool } from "./tool.js"
|
|
|
|
export type Tools<R = never> = {
|
|
readonly [name: string]: Tool<R> | Tools<R>
|
|
}
|