msubsup.d.ts 1020 B

123456789101112131415161718
  1. import { CHTMLWrapper, Constructor } from '../Wrapper.js';
  2. import { CHTMLscriptbase } from './scriptbase.js';
  3. import { StyleList } from '../../../util/StyleList.js';
  4. declare const CHTMLmsub_base: import("../../common/Wrappers/msubsup.js").MsubConstructor<CHTMLWrapper<any, any, any>> & Constructor<CHTMLscriptbase<any, any, any>>;
  5. export declare class CHTMLmsub<N, T, D> extends CHTMLmsub_base {
  6. static kind: string;
  7. }
  8. declare const CHTMLmsup_base: import("../../common/Wrappers/msubsup.js").MsupConstructor<CHTMLWrapper<any, any, any>> & Constructor<CHTMLscriptbase<any, any, any>>;
  9. export declare class CHTMLmsup<N, T, D> extends CHTMLmsup_base {
  10. static kind: string;
  11. }
  12. declare const CHTMLmsubsup_base: import("../../common/Wrappers/msubsup.js").MsubsupConstructor<CHTMLWrapper<any, any, any>> & Constructor<CHTMLscriptbase<any, any, any>>;
  13. export declare class CHTMLmsubsup<N, T, D> extends CHTMLmsubsup_base {
  14. static kind: string;
  15. static styles: StyleList;
  16. toCHTML(parent: N): void;
  17. }
  18. export {};