Add tests and margain

This commit is contained in:
Dolan
2019-03-18 23:50:21 +00:00
parent 639842332f
commit e67fd9cb2b
19 changed files with 611 additions and 107 deletions

View File

@ -16,11 +16,6 @@ import { TableRow } from "./table-row";
table will make it look reasonable, as the layout
algorithm will expand columns to fit its content
*/
export interface IWidthOptions {
readonly width: number;
readonly type?: WidthType;
}
export interface ITableOptions {
readonly rows: number;
readonly columns: number;
@ -104,9 +99,4 @@ export class Table extends XmlComponent {
this.properties.setFixedWidthLayout();
return this;
}
public float(tableFloatOptions: ITableFloatOptions): Table {
this.properties.setTableFloatProperties(tableFloatOptions);
return this;
}
}