UNPKG

svg-engine

Version:
19 lines (18 loc) 1.09 kB
import { SVGInstance } from "../../browser/instance/SVGInstance.js"; import { ShapeInstances } from "../mixins/permitted-content/shapeInstances.js"; import { SVGSVGInstance } from "./SVGSVGInstance.js"; import { Color } from "../mixins/presentation-attributes/color.js"; import { Display } from "../mixins/presentation-attributes/display.js"; import { Fill } from "../mixins/presentation-attributes/fill.js"; import { Opacity } from "../mixins/presentation-attributes/opacity.js"; import { Stroke } from "../mixins/presentation-attributes/stroke.js"; import { VectorEffect } from "../mixins/presentation-attributes/vectorEffect.js"; import { Visibility } from "../mixins/presentation-attributes/visibility.js"; export declare class SVGGroupInstance extends SVGInstance { constructor(_parent?: SVGInstance); addGroup(): SVGGroupInstance; addSVG(): SVGSVGInstance; addSVG(width: string | number, height: string | number): SVGSVGInstance; } export interface SVGGroupInstance extends SVGInstance, ShapeInstances, Color, Display, Fill, Opacity, Stroke, VectorEffect, Visibility { }