Enabled declarations in tsconfig to be true

This commit is contained in:
Dolan
2017-07-07 14:31:08 +01:00
parent 2ec171d4a8
commit 97101adb10
16 changed files with 35 additions and 34 deletions

View File

@ -1,6 +1,6 @@
import { XmlAttributeComponent } from "../xml-components";
interface IDocumentAttributesProperties {
export interface IDocumentAttributesProperties {
wpc?: string;
mc?: string;
o?: string;

View File

@ -1,14 +1,14 @@
import { XmlAttributeComponent, XmlComponent } from "../xml-components";
type alignmentOptions = "left" | "center" | "right" | "both";
export type AlignmentOptions = "left" | "center" | "right" | "both";
class AlignmentAttributes extends XmlAttributeComponent<{val: alignmentOptions}> {
export class AlignmentAttributes extends XmlAttributeComponent<{val: AlignmentOptions}> {
protected xmlKeys = {val: "w:val"};
}
export class Alignment extends XmlComponent {
constructor(type: alignmentOptions) {
constructor(type: AlignmentOptions) {
super("w:jc");
this.root.push(new AlignmentAttributes({val: type}));
}

View File

@ -1,6 +1,6 @@
import { XmlAttributeComponent, XmlComponent } from "../xml-components";
class TabStop extends XmlComponent {
export class TabStop extends XmlComponent {
constructor(tab: Tab) {
super("w:tabs");
@ -8,15 +8,15 @@ class TabStop extends XmlComponent {
}
}
export type tabOptions = "left" | "right";
export type TabOptions = "left" | "right";
class TabAttributes extends XmlAttributeComponent<{val: tabOptions, pos: string | number}> {
export class TabAttributes extends XmlAttributeComponent<{val: TabOptions, pos: string | number}> {
protected xmlKeys = {val: "w:val", pos: "w:pos"};
}
class Tab extends XmlComponent {
export class Tab extends XmlComponent {
constructor(value: tabOptions, position: string | number) {
constructor(value: TabOptions, position: string | number) {
super("w:tab");
this.root.push(new TabAttributes({
val: value,

View File

@ -1,6 +1,6 @@
import { Attributes, XmlComponent } from "../xml-components";
abstract class VerticalAlign extends XmlComponent {
export abstract class VerticalAlign extends XmlComponent {
constructor(type: string) {
super("w:vertAlign");

View File

@ -1,6 +1,6 @@
import { Attributes, XmlComponent } from "../xml-components";
abstract class BaseUnderline extends XmlComponent {
export abstract class BaseUnderline extends XmlComponent {
constructor(underlineType: string, color?: string) {
super("w:u");

View File

@ -2,7 +2,7 @@ import { Paragraph } from "../paragraph";
import { XmlComponent } from "../xml-components";
import { TableGrid } from "./grid";
import { TableProperties, widthTypes } from "./properties";
import { TableProperties, WidthTypes } from "./properties";
export class Table extends XmlComponent {
private properties: TableProperties;
@ -51,7 +51,7 @@ export class Table extends XmlComponent {
return this.getRow(row).getCell(col);
}
public setWidth(type: widthTypes, width: number | string): Table {
public setWidth(type: WidthTypes, width: number | string): Table {
this.properties.setWidth(type, width);
return this;
}
@ -62,7 +62,7 @@ export class Table extends XmlComponent {
}
}
class TableRow extends XmlComponent {
export class TableRow extends XmlComponent {
private properties: TableRowProperties;
private cells: TableCell[];
@ -79,13 +79,13 @@ class TableRow extends XmlComponent {
}
}
class TableRowProperties extends XmlComponent {
export class TableRowProperties extends XmlComponent {
constructor() {
super("w:trPr");
}
}
class TableCell extends XmlComponent {
export class TableCell extends XmlComponent {
private properties: TableCellProperties;
constructor() {
@ -116,7 +116,7 @@ class TableCell extends XmlComponent {
}
}
class TableCellProperties extends XmlComponent {
export class TableCellProperties extends XmlComponent {
constructor() {
super("w:tcPr");
}

View File

@ -1,13 +1,13 @@
import { XmlAttributeComponent, XmlComponent } from "../xml-components";
export type widthTypes = "dxa" | "pct" | "nil" | "auto";
export type WidthTypes = "dxa" | "pct" | "nil" | "auto";
export class TableProperties extends XmlComponent {
constructor() {
super("w:tblPr");
}
public setWidth(type: widthTypes, w: number | string): TableProperties {
public setWidth(type: WidthTypes, w: number | string): TableProperties {
this.root.push(new PreferredTableWidth(type, w));
return this;
}
@ -19,7 +19,7 @@ export class TableProperties extends XmlComponent {
}
interface ITableWidth {
type: widthTypes;
type: WidthTypes;
w: number | string;
}
@ -28,20 +28,20 @@ class TableWidthAttributes extends XmlAttributeComponent<ITableWidth> {
}
class PreferredTableWidth extends XmlComponent {
constructor(type: widthTypes, w: number | string) {
constructor(type: WidthTypes, w: number | string) {
super("w:tblW");
this.root.push(new TableWidthAttributes({type, w}));
}
}
type tableLayout = "autofit" | "fixed";
type TableLayoutOptions = "autofit" | "fixed";
class TableLayoutAttributes extends XmlAttributeComponent<{type: tableLayout}> {
class TableLayoutAttributes extends XmlAttributeComponent<{type: TableLayoutOptions}> {
protected xmlKeys = {type: "w:type"};
}
class TableLayout extends XmlComponent {
constructor(type: tableLayout) {
constructor(type: TableLayoutOptions) {
super("w:tblLayout");
this.root.push(new TableLayoutAttributes({type}));
}

View File

@ -1,6 +1,6 @@
import { XmlAttributeComponent } from "./default-attributes";
interface IAttributesProperties {
export interface IAttributesProperties {
val?: string | number | boolean;
color?: string;
space?: string;

View File

@ -1,6 +1,6 @@
import { BaseXmlComponent } from "./base";
type AttributeMap<T> = {[P in keyof T]: string};
export type AttributeMap<T> = {[P in keyof T]: string};
export abstract class XmlAttributeComponent<T> extends BaseXmlComponent {
protected root: T;