WrapperFactory.d.ts 552 B

12345678910
  1. import { SVG } from '../svg.js';
  2. import { CommonWrapperFactory } from '../common/WrapperFactory.js';
  3. import { SVGWrapper, SVGWrapperClass } from './Wrapper.js';
  4. import { SVGCharOptions, SVGDelimiterData, SVGFontData } from './FontData.js';
  5. export declare class SVGWrapperFactory<N, T, D> extends CommonWrapperFactory<SVG<N, T, D>, SVGWrapper<N, T, D>, SVGWrapperClass, SVGCharOptions, SVGDelimiterData, SVGFontData> {
  6. static defaultNodes: {
  7. [kind: string]: import("../common/Wrapper.js").WrapperConstructor;
  8. };
  9. jax: SVG<N, T, D>;
  10. }