math.d.ts 567 B

12345678910111213
  1. import { SVGConstructor } from '../Wrapper.js';
  2. import { StyleList } from '../../../util/StyleList.js';
  3. declare const SVGmath_base: import("../../common/Wrappers/math.js").MathConstructor & SVGConstructor<any, any, any>;
  4. export declare class SVGmath<N, T, D> extends SVGmath_base {
  5. static kind: string;
  6. static styles: StyleList;
  7. toSVG(parent: N): void;
  8. protected handleDisplay(): void;
  9. protected handleSpeech(): void;
  10. protected getTitleID(): string;
  11. setChildPWidths(recompute: boolean, w?: number, _clear?: boolean): boolean;
  12. }
  13. export {};