UNPKG
makima-ts
Version:
latest (1.0.0-alpha.4)
1.0.0-alpha.4
1.0.0-alpha.3
1.0.0-alpha.2
1.0.0-alpha.1
Typescript SDK for Makima.
makima-ts
/
dist
/
tool
/
types.d.ts
12 lines
(11 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** * Interface representing the parameters required to create or update a tool. */
interface
ToolParams
{ name:
string
; description?:
string
;
params
?: any; endpoint:
string
; method:
string
; } export { ToolParams };