UNPKG

dynamic-modal

Version:

The dynamic-modal is a solution of creation different modals into project using a json configuration file

12 lines (9 loc) 278 B
import { IField, IFieldProps } from './field'; export interface IMakeTextarea extends IField { elementType: 'textarea'; cols?: number; rows?: number; } export interface IMakeTextareaProps extends IFieldProps { element: Omit<IMakeTextarea, 'elementType'>; }