oadp-material
Version:
oadp-material
19 lines (18 loc) • 470 B
TypeScript
import * as React from 'react';
import './index.scss';
export interface OadpAttributeProps {
id?: string;
name?: string;
code?: string;
logicalName?: string;
physicalName?: string;
attributeType?: string;
referEntity?: any;
referAttribute?: any;
defaultValue?: string;
description?: string;
required?: boolean;
disabled?: boolean;
}
declare const OadpAttribute: React.FC<OadpAttributeProps>;
export default OadpAttribute;