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.
 
 
 
 

18 lines
599 B

import type { BaseStyleProps, PathStyleProps } from '../../shapes';
import { DisplayObject } from '../../shapes';
export interface LinesStyleProps extends BaseStyleProps {
x?: number;
y?: number;
lines: PathStyleProps[];
areas: PathStyleProps[];
}
export declare class Lines extends DisplayObject<LinesStyleProps> {
private linesGroup;
private areasGroup;
constructor({ style, ...rest }: Partial<DisplayObject<LinesStyleProps>>);
render(): void;
clear(): void;
update(attr: Partial<LinesStyleProps>): void;
private renderLines;
private renderAreas;
}