@visactor/vgrammar-core
Version:
VGrammar is a visual grammar library
11 lines (10 loc) • 351 B
TypeScript
import type { IGroupGraphicAttribute } from '@visactor/vrender-core';
import { Group } from '@visactor/vrender-core';
interface LargeRectsAttribute extends IGroupGraphicAttribute {
points: Float32Array | number[];
}
export declare class LargeRects extends Group {
constructor(attributes: LargeRectsAttribute);
render(): void;
}
export {};