UNPKG

dynamic-modal

Version:

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

9 lines (8 loc) 286 B
import { IField, IFieldProps } from './field'; export interface IMakeWatcher extends Pick<IField, 'style' | 'label'> { elementType: 'watcher'; watchList: Array<string>; } export interface IMakeWatcherProps extends IFieldProps { element: Omit<IMakeWatcher, 'elementType'>; }