@redhare/lowcode-types
Version:
Types for Ali lowCode engine
12 lines (11 loc) • 341 B
TypeScript
import { IPublicTypePreferenceValueType } from './';
export interface IPublicTypePluginDeclarationProperty {
key: string;
description: string;
type: string;
default?: IPublicTypePreferenceValueType;
useMultipleLineTextInput?: boolean;
enum?: any[];
enumDescriptions?: string[];
deprecationMessage?: string;
}