slightning-coco-widget
Version:
SLIGHTNING 的 CoCo 控件框架。
16 lines (15 loc) • 369 B
TypeScript
import { IAddOpenFieldProperty } from "./field.create.property";
export interface IDatasheetFieldCreateRo {
/**
* Datasheet Name.
*/
name: string;
/**
* Field type, refer to the enumeration value of FieldType.
*/
type: string;
/**
* Field Configuration.
*/
property?: IAddOpenFieldProperty | null;
}