6 lines
250 B
TypeScript
6 lines
250 B
TypeScript
import { JsonSchema } from "./types";
|
|
/**
|
|
* merges to two json schema. In case of conflicts, will use overwrite first
|
|
* schema or directly return first json schema.
|
|
*/
|
|
export declare function mergeSchema(a: JsonSchema, b: JsonSchema): JsonSchema;
|