Open wccbuck opened 9 months ago
index.d.ts:
interface EditorProps { json?: {}; text?: string; onChange?: (value: { json: {}; text: string }) => void; onError?: (error: {}) => void; theme?: any; } declare const YamlEditor: (props: EditorProps) => JSX.Element; export default YamlEditor;
The optional properties "merge" and "ref" need to be added to EditorProps.
index.d.ts:
The optional properties "merge" and "ref" need to be added to EditorProps.