UNPKG

n8n-nodes-databricks-api

Version:
7 lines (6 loc) 406 B
import type { JSONSchema7 } from 'json-schema'; import type { IExecuteFunctions } from 'n8n-workflow'; import type { z } from 'zod'; export declare function generateSchema(schemaString: string): JSONSchema7; export declare function convertJsonSchemaToZod<T extends z.ZodTypeAny = z.ZodTypeAny>(schema: JSONSchema7): T; export declare function throwIfToolSchema(ctx: IExecuteFunctions, error: Error): void;