UNPKG

@sheetxl/models

Version:

Models - A Headless javascript spreadsheet library.

21 lines 661 B
import { Bounds } from "@sheetxl/common"; import { IBullet } from "./Bullet"; import { ITextRun } from "./TextRun"; /** * This interface is a 'helper' interface that is only available on Frames that have be layed out/placed */ export interface ITextLine { readonly bullet: IBullet; readonly runs: ITextRun[]; readonly bounds: Bounds; readonly baseline: number; } export declare class DefaultTextLine implements ITextLine { _private: any; constructor(bounds: Bounds, baseline: number, runs: ITextRun[]); get bounds(): any; get baseline(): any; get runs(): any; get bullet(): any; } //# sourceMappingURL=TextLine.d.ts.map