Type Alias ITableOptions

ITableOptions: {
    alignment?: typeof AlignmentType[keyof typeof AlignmentType];
    borders?: ITableBordersOptions;
    columnWidths?: readonly number[];
    float?: ITableFloatOptions;
    indent?: ITableWidthProperties;
    layout?: typeof TableLayoutType[keyof typeof TableLayoutType];
    margins?: ITableCellMarginOptions;
    rows: readonly TableRow[];
    style?: string;
    visuallyRightToLeft?: boolean;
    width?: ITableWidthProperties;
}