This commit is contained in:
counterweight 2026-05-14 10:56:04 +02:00
parent bc92231240
commit b8225c639e
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
11904 changed files with 1472749 additions and 133 deletions

View file

@ -0,0 +1,16 @@
import { SVGWrapper, SVGConstructor } from '../Wrapper.js';
import { SVGmsqrt } from './msqrt.js';
import * as Notation from '../Notation.js';
declare const SVGmenclose_base: import("../../common/Wrappers/menclose.js").MencloseConstructor<SVGWrapper<any, any, any>, SVGmsqrt<any, any, any>, any> & SVGConstructor<any, any, any>;
export declare class SVGmenclose<N, T, D> extends SVGmenclose_base {
static kind: string;
static notations: Notation.DefList<SVGmenclose<any, any, any>, any>;
toSVG(parent: N): void;
arrow(W: number, a: number, double: boolean, offset?: string, dist?: number): N;
line(pq: [number, number, number, number]): N;
box(w: number, h: number, d: number, r?: number): N;
ellipse(w: number, h: number, d: number): N;
path(join: string, ...P: (string | number)[]): N;
fill(...P: (string | number)[]): N;
}
export {};