@redhare/lowcode-types
Version:
Types for Ali lowCode engine
10 lines (9 loc) • 328 B
TypeScript
import { IPublicTypePluginDeclarationProperty } from './';
/**
* declaration of plugin`s preference
* when strictPluginMode === true, only declared preference can be obtained from inside plugin.
*/
export interface IPublicTypePluginDeclaration {
title: string;
properties: IPublicTypePluginDeclarationProperty[];
}