You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
431 B
22 lines
431 B
import { RowFlex } from '../dataset/enum/Row'
|
|
import { IElement, IElementMetrics } from './Element'
|
|
|
|
export type IRowElement = IElement & {
|
|
metrics: IElementMetrics
|
|
style: string
|
|
left?: number
|
|
}
|
|
|
|
export interface IRow {
|
|
width: number
|
|
height: number
|
|
ascent: number
|
|
rowFlex?: RowFlex
|
|
startIndex: number
|
|
isPageBreak?: boolean
|
|
isList?: boolean
|
|
listIndex?: number
|
|
offsetX?: number
|
|
elementList: IRowElement[]
|
|
}
|