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.
8 lines
347 B
8 lines
347 B
|
4 months ago
|
import { Component } from '../../core';
|
||
|
|
import type { Group } from '../../shapes';
|
||
|
|
import type { GridOptions, GridStyleProps } from './types';
|
||
|
|
export type { GridOptions, GridStyleProps };
|
||
|
|
export declare class Grid extends Component<GridStyleProps> {
|
||
|
|
render(attributes: GridStyleProps, container: Group): import("@antv/g-lite").IAnimation[];
|
||
|
|
}
|