vs-form-mui-4x
Version:
A schema-based form generator component for React using material-ui 4.x
13 lines (12 loc) • 565 B
TypeScript
import React from 'react';
import * as types from '../schemaManager/types';
export interface ISchemaErrorProps {
errors: types.IValidationErrorList;
onErrorClick: (e: types.IValidationError) => void;
classes?: any;
}
export interface ISchemaErrorState {
hideDetails: boolean;
}
declare const _default: React.ComponentType<Pick<ISchemaErrorProps, "errors" | "onErrorClick"> & import("@material-ui/core/styles").StyledComponentProps<"cssError" | "text" | "cssMargin" | "cssShiftRight" | "cssBtn" | "cssIconBtn">>;
export default _default;