site/node_modules/mathjax-full/js/output/chtml/Wrappers/mtable.d.ts
2024-10-14 08:09:33 +02:00

38 lines
1.7 KiB
TypeScript

import { CHTMLWrapper, CHTMLConstructor } from '../Wrapper.js';
import { CHTMLWrapperFactory } from '../WrapperFactory.js';
import { CHTMLmtr } from './mtr.js';
import { CHTMLmtd } from './mtd.js';
import { MmlNode } from '../../../core/MmlTree/MmlNode.js';
import { StyleList } from '../../../util/StyleList.js';
declare const CHTMLmtable_base: import("../../common/Wrappers/mtable.js").MtableConstructor<CHTMLmtd<any, any, any>, CHTMLmtr<any, any, any>> & CHTMLConstructor<any, any, any>;
export declare class CHTMLmtable<N, T, D> extends CHTMLmtable_base {
static kind: string;
static styles: StyleList;
labels: N;
itable: N;
constructor(factory: CHTMLWrapperFactory<N, T, D>, node: MmlNode, parent?: CHTMLWrapper<N, T, D>);
getAlignShift(): [string, number];
toCHTML(parent: N): void;
protected shiftColor(): void;
protected padRows(): void;
protected handleColumnSpacing(): void;
protected handleColumnLines(): void;
protected handleColumnWidths(): void;
protected handleRowSpacing(): void;
protected handleRowLines(): void;
protected handleRowHeights(): void;
protected handleEqualRows(): void;
protected setRowHeight(row: CHTMLWrapper<N, T, D>, HD: number): void;
protected setRowBaseline(row: CHTMLWrapper<N, T, D>, HD: number, D: number): void;
protected setCellBaseline(cell: CHTMLWrapper<N, T, D>, ralign: string, HD: number, D: number): boolean;
protected handleFrame(): void;
protected handleWidth(): void;
protected handleAlign(): void;
protected handleJustify(): void;
protected handleLabels(): void;
protected addLabelPadding(side: string): [string, number];
protected updateRowHeights(): void;
protected addLabelSpacing(): void;
}
export {};