igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
17 lines (16 loc) • 454 B
TypeScript
import { Geometry } from "./Geometry";
import { GeometryCollection } from "./GeometryCollection";
import { GeometryType } from "./GeometryType";
import { FillRule } from "./FillRule";
import { Type } from "./type";
/**
* @hidden
*/
export declare class GeometryGroup extends Geometry {
static $t: Type;
constructor();
d: GeometryCollection;
protected get_b(): GeometryType;
get b(): GeometryType;
c: FillRule;
}