scriptbase.d.ts 667 B

123456789101112
  1. import { CHTMLWrapper, CHTMLConstructor } from '../Wrapper.js';
  2. import { BBox } from '../../../util/BBox.js';
  3. declare const CHTMLscriptbase_base: import("../../common/Wrappers/scriptbase.js").ScriptbaseConstructor<CHTMLWrapper<any, any, any>> & CHTMLConstructor<any, any, any>;
  4. export declare class CHTMLscriptbase<N, T, D> extends CHTMLscriptbase_base {
  5. static kind: string;
  6. toCHTML(parent: N): void;
  7. protected setDeltaW(nodes: N[], dx: number[]): void;
  8. protected adjustOverDepth(over: N, overbox: BBox): void;
  9. protected adjustUnderDepth(under: N, underbox: BBox): void;
  10. protected adjustBaseHeight(base: N, basebox: BBox): void;
  11. }
  12. export {};