UNPKG

dynamic-modal

Version:

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

10 lines (7 loc) 234 B
import { IField, IFieldProps } from './field'; export interface IMakeToggle extends IField { elementType: 'toggle'; } export interface IMakeToggleProps extends IFieldProps { element: Omit<IMakeToggle, 'elementType'>; }