UNPKG

ra-core

Version:

Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React

12 lines (9 loc) 274 B
import { ComponentType } from 'react'; export interface InferredType { type?: ComponentType; component?: ComponentType; representation?: (props: any, children: any) => string; } export interface InferredTypeMap { [key: string]: InferredType | undefined; }