UNPKG

@redhare/lowcode-types

Version:

Types for Ali lowCode engine

8 lines (7 loc) 299 B
import { IPublicModelNode, IPublicTypeTitleContent } from '..'; export interface IPublicModelExclusiveGroup<Node = IPublicModelNode> { readonly id: string | undefined; readonly title: IPublicTypeTitleContent | undefined; get firstNode(): Node | null; setVisible(node: Node): void; }