focusreactive / focusreactive/headless-cms-yaml-input
"merge" and "ref" properties are not listed in EditorProps interface
Open
- Dominant language
- TypeScript
- Stars
- 8
- Forks
- 4
- PR merge metrics
- No merged PRs in 30d
Description
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.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.