admin-bro
Version:
Admin panel for apps written in node.js
16 lines (15 loc) • 567 B
TypeScript
/// <reference types="react" />
import { BasePropertyComponentProps } from './base-property-props';
declare type BasePropertyComponentType = React.FC<BasePropertyComponentProps> & {
DefaultType: any;
Boolean: any;
DateTime: any;
RichText: any;
Reference: any;
TextArea: any;
Password: any;
};
declare const BasePropertyComponentExtended: BasePropertyComponentType;
export { BasePropertyComponentExtended as default, BasePropertyComponentExtended as BasePropertyComponent, };
export * from './base-property-props';
export * from './utils';