Fix ESLinting errors and remove TSLint
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
import { expect } from "chai";
|
||||
|
||||
import { EMPTY_OBJECT } from "@file/xml-components";
|
||||
import { Formatter } from "@export/formatter";
|
||||
|
||||
import { GridCol, TableGrid } from "./grid";
|
||||
|
||||
import { EMPTY_OBJECT } from "@file/xml-components";
|
||||
|
||||
describe("GridCol", () => {
|
||||
describe("#constructor", () => {
|
||||
|
@ -10,7 +10,7 @@ export interface ITableCellOptions extends ITableCellPropertiesOptions {
|
||||
}
|
||||
|
||||
export class TableCell extends XmlComponent {
|
||||
public constructor(readonly options: ITableCellOptions) {
|
||||
public constructor(public readonly options: ITableCellOptions) {
|
||||
super("w:tc");
|
||||
|
||||
this.root.push(new TableCellProperties(options));
|
||||
|
Reference in New Issue
Block a user