simple-mind-map
Version:
一个简单的web在线思维导图
14 lines (13 loc) • 592 B
TypeScript
export default OrganizationStructure;
declare class OrganizationStructure extends Base {
constructor(opt?: {});
computedBaseValue(): void;
computedLeftValue(): void;
adjustLeftValue(): void;
updateBrothers(node: any, addWidth: any): void;
renderLineCurve(node: any, lines: any, style: any): any[];
renderLineDirect(node: any, lines: any, style: any): any[];
renderLineStraight(node: any, lines: any, style: any): any[];
renderExpandBtnRect(rect: any, expandBtnSize: any, width: any, height: any, node: any): void;
}
import Base from "./Base";