@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) • 825 B
TypeScript
/// <reference types="react" />
import { Node } from '@ali/sutee-lowcode-engine';
import { TriggerDirection } from "../../common/types";
declare const CnLayoutBlockPrototype: {
title: string;
componentName: string;
icon: import("react").JSX.Element;
docUrl: string;
isContainer: boolean;
canResizing: (node: Node, triggerDirection: TriggerDirection) => boolean;
onResizeStart: (e: MouseEvent & {
trigger: string;
deltaX?: number;
deltaY?: number;
}, d: string, currentNode: any) => void;
onResize: (e: MouseEvent & {
trigger: 'e' | 'w';
deltaX?: number;
deltaY?: number;
}, d: any, currentNode: any) => void;
onResizeEnd: (e: MouseEvent, d: any, currentNode: any) => void;
configure: any[];
};
export { CnLayoutBlockPrototype };