Files
QR-Invoice/node_modules/svg-engine/lib/browser/cjs/shared/instances/SVGGroupInstance.d.ts
2026-01-12 13:12:46 +01:00

19 lines
1.1 KiB
TypeScript

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 {
}