ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
14 lines • 531 B
TypeScript
/// <reference types="react" />
import { InferredType } from './types';
declare class InferredElement {
private type?;
private props?;
private children?;
constructor(type?: InferredType | undefined, 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