UNPKG

ra-core

Version:

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

10 lines 307 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; } //# sourceMappingURL=types.d.ts.map