ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
13 lines • 487 B
TypeScript
import { InferredType } from './types';
declare class InferredElement {
type?: InferredType;
props?: any;
children?: any;
constructor(type?: InferredType, props?: any, children?: any);
getElement(props?: {}): import("react").ReactElement<{}, string | import("react").JSXElementConstructor<any>> | undefined;
getProps(): any;
isDefined(): boolean;
getRepresentation(): string;
}
export default InferredElement;
//# sourceMappingURL=InferredElement.d.ts.map