mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
import { z } from 'zod';
|
|
|
|
import type { JsonSchemaObject } from '../types';
|
|
|
|
export const parseDefault = (_jsonSchema: JsonSchemaObject) => {
|
|
return z.any();
|
|
};
|