UNPKG

@antv/g-base

Version:

A common util collection for antv projects

9 lines (8 loc) 256 B
import { IGroup } from '../interfaces'; import Container from './container'; declare abstract class AbstractGroup extends Container implements IGroup { isGroup(): boolean; isEntityGroup(): boolean; clone(): any; } export default AbstractGroup;