@redhare/lowcode-types
Version:
Types for Ali lowCode engine
18 lines (17 loc) • 465 B
TypeScript
import { IPublicTypeNodeData } from './node-data';
import { IPublicTypeNodeSchema } from './node-schema';
/**
* Slot schema 描述
*/
export interface IPublicTypeSlotSchema extends IPublicTypeNodeSchema {
componentName: 'Slot';
name?: string;
title?: string;
params?: string[];
props?: {
slotTitle?: string;
slotName?: string;
slotParams?: string[];
};
children?: IPublicTypeNodeData[] | IPublicTypeNodeData;
}