index.d.ts 343 B

1234567
  1. import { GUI } from '../../core';
  2. import type { Group } from '../../shapes';
  3. import type { GridOptions, GridStyleProps } from './types';
  4. export type { GridStyleProps, GridOptions };
  5. export declare class Grid extends GUI<GridStyleProps> {
  6. render(attributes: GridStyleProps, container: Group): import("../../animation").AnimationResult[];
  7. }