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.
14 lines
533 B
14 lines
533 B
import { BaseStyleProps, DisplayObject, Group, GroupStyleProps } from '../../shapes';
|
|
export type ColumnStyleProps = GroupStyleProps;
|
|
export interface ColumnsStyleProps extends BaseStyleProps {
|
|
x?: number;
|
|
y?: number;
|
|
columns: ColumnStyleProps[][];
|
|
}
|
|
export declare class Columns extends DisplayObject<ColumnsStyleProps> {
|
|
columnsGroup: Group;
|
|
constructor({ style, ...rest }: Partial<DisplayObject<ColumnsStyleProps>>);
|
|
render(): void;
|
|
update(attr: Partial<ColumnsStyleProps>): void;
|
|
clear(): void;
|
|
}
|
|
|