9 lines
289 B
TypeScript
9 lines
289 B
TypeScript
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;
|
|
}
|