UNPKG

konva

Version:

HTML5 2d canvas library.

9 lines (8 loc) 289 B
import { Container, ContainerConfig } from './Container.js'; import { Node } from './Node.js'; import { Shape } from './Shape.js'; export interface GroupConfig extends ContainerConfig { } export declare class Group extends Container<Group | Shape> { _validateAdd(child: Node): void; }