UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

11 lines (10 loc) 458 B
import type { JSONSchemaObject } from '../../../../dt/index.js'; import type { UCInput } from '../../../../uc/index.js'; export type StdioToolInput<I extends UCInput | undefined = undefined> = I & { _reserved?: { confirmed?: boolean; }; }; export declare const RESERVED_KEY: "_reserved"; export declare const RESERVED_CONFIRMED_KEY: "confirmed"; export declare function stdioToolInputSchema(): JSONSchemaObject<StdioToolInput>['properties'];