ze-react-component-library
Version:
ZeroETP React Component Library
13 lines (12 loc) • 394 B
TypeScript
import React, { FC } from "react";
export declare const types: readonly ["entity", "event"];
export declare type Type = typeof types[number];
declare type JsonEditorProps = {
value?: Record<string, any>;
editorRef?: React.MutableRefObject<any>;
editable: boolean;
type?: Type;
isCreate?: boolean;
};
declare const JsonEditor: FC<JsonEditorProps>;
export default JsonEditor;