(value: unknown)
| 50 | const matchesToolFileSchema = Schema.is(ToolFileSchema); |
| 51 | |
| 52 | export const isToolFile = (value: unknown): value is ToolFile => matchesToolFileSchema(value); |
| 53 | |
| 54 | export type ToolResult<T> = |
| 55 | | { readonly ok: true; readonly data: T; readonly http?: ToolHttpMeta } |
no outgoing calls
no test coverage detected