Home > @uniformdev/design-system > JsonEditorProps

JsonEditorProps type

Signature:

type JsonEditorProps = {
    defaultValue: string | undefined;
    onChange: (value: string | undefined) => void;
    jsonSchema?: JsonSchema7Type;
    height?: string | number;
    readOnly?: boolean;
};