UNPKG

@zhanghongping/json-sage-workflow-cli

Version:

An intelligent JSON processing workflow system with improved error handling and configuration

8 lines (7 loc) 348 B
import { SchemaOptions } from '../types'; export declare function generateSchema(description: string, options?: SchemaOptions): Promise<{ type: string; properties: {}; }>; export declare function saveSchema(schema: any, filePath: string, format?: boolean): Promise<void>; export declare function loadSchema(filePath: string): Promise<any>;