mfenced.d.ts 468 B

12345678910
  1. import { SVGWrapper, SVGConstructor } from '../Wrapper.js';
  2. import { SVGinferredMrow } from './mrow.js';
  3. declare const SVGmfenced_base: import("../../common/Wrappers/mfenced.js").MfencedConstructor & SVGConstructor<any, any, any>;
  4. export declare class SVGmfenced<N, T, D> extends SVGmfenced_base {
  5. static kind: string;
  6. mrow: SVGinferredMrow<N, T, D>;
  7. toSVG(parent: N): void;
  8. protected setChildrenParent(parent: SVGWrapper<N, T, D>): void;
  9. }
  10. export {};