UNPKG

dynamic-modal

Version:

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

8 lines (7 loc) 252 B
import { IField, IFieldProps } from './field'; export interface IMakeCustomUpload extends IField { elementType: 'custom-upload'; } export interface IMakeCustomUploadProps extends IFieldProps { element: Omit<IMakeCustomUpload, 'elementType'>; }