@cainiaofe/cn-ui-layout
Version:
- 安装 cone-cli | [Cone-CLI 使用指引](https://alidocs.dingtalk.com/i/nodes/xdqZp24KneBJzvGM6XezJvyb7RA0Nr1E) - `tnpm i -g @alife/cone-cli@latest` - 安装依赖包 - `cone install` - 启动研发 - `cone start`
25 lines (24 loc) • 569 B
TypeScript
/// <reference types="react" />
declare const CnLayoutContentPrototype: {
title: string;
componentName: string;
icon: import("react").JSX.Element;
docUrl: string;
isContainer: boolean;
canOperating: boolean;
configure: ({
name: string;
title: string;
initialValue: boolean;
display: string;
} | {
name: string;
title: string;
initialValue: {
type: string;
value: string;
};
display: string;
})[];
};
export { CnLayoutContentPrototype };