13 lines
560 B
TypeScript
13 lines
560 B
TypeScript
import { CHTMLConstructor } from '../Wrapper.js';
|
|
import { StyleList } from '../../../util/StyleList.js';
|
|
declare const CHTMLmath_base: import("../../common/Wrappers/math.js").MathConstructor & CHTMLConstructor<any, any, any>;
|
|
export declare class CHTMLmath<N, T, D> extends CHTMLmath_base {
|
|
static kind: string;
|
|
static styles: StyleList;
|
|
toCHTML(parent: N): void;
|
|
protected handleDisplay(parent: N): void;
|
|
protected handleInline(parent: N): void;
|
|
setChildPWidths(recompute: boolean, w?: number, clear?: boolean): boolean;
|
|
}
|
|
export {};
|