You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
532 B
10 lines
532 B
import { DisplayObject, Group } from '../../shapes';
|
|
export declare function getTitleShapeBBox(titleShape?: DisplayObject): {
|
|
top: number;
|
|
left: number;
|
|
right: number;
|
|
bottom: number;
|
|
};
|
|
export declare function renderTitle(container: Group, cfg?: any): any | null;
|
|
export declare function renderGroup(container: Group, className: string, x: number, y: number): Group;
|
|
export declare function renderRect(container: Group, className: string, width: number, height: number, style?: any): import("../../util")._Element;
|
|
|