@redhare/lowcode-types
Version:
Types for Ali lowCode engine
27 lines (26 loc) • 431 B
TypeScript
import { IPublicTypePropType } from './';
/**
* 组件属性信息
*/
export interface IPublicTypePropConfig {
/**
* 属性名称
*/
name: string;
/**
* 属性类型
*/
propType: IPublicTypePropType;
/**
* 属性描述
*/
description?: string;
/**
* 属性默认值
*/
defaultValue?: any;
/**
* @deprecated 已被弃用
*/
setter?: any;
}