From aea4b43e286fe9d47f781569436d8514a918d26c Mon Sep 17 00:00:00 2001 From: Dolan Miu Date: Sun, 27 Mar 2016 02:28:47 +0100 Subject: [PATCH] added initial classes --- ts/docx/docx.ts | 6 ++++++ ts/docx/paragraph.ts | 5 +++++ ts/docx/row.ts | 5 +++++ ts/docx/tabStop.ts | 5 +++++ ts/docx/table.ts | 5 +++++ ts/docx/text.ts | 5 +++++ 6 files changed, 31 insertions(+) create mode 100644 ts/docx/docx.ts create mode 100644 ts/docx/paragraph.ts create mode 100644 ts/docx/row.ts create mode 100644 ts/docx/tabStop.ts create mode 100644 ts/docx/table.ts create mode 100644 ts/docx/text.ts diff --git a/ts/docx/docx.ts b/ts/docx/docx.ts new file mode 100644 index 0000000000..c77997c7c7 --- /dev/null +++ b/ts/docx/docx.ts @@ -0,0 +1,6 @@ +module docx { + + export class Docx { + + } +} \ No newline at end of file diff --git a/ts/docx/paragraph.ts b/ts/docx/paragraph.ts new file mode 100644 index 0000000000..547732b9e8 --- /dev/null +++ b/ts/docx/paragraph.ts @@ -0,0 +1,5 @@ +module docx { + export class Paragraph { + + } +} \ No newline at end of file diff --git a/ts/docx/row.ts b/ts/docx/row.ts new file mode 100644 index 0000000000..38cd4f1432 --- /dev/null +++ b/ts/docx/row.ts @@ -0,0 +1,5 @@ +module docx { + export class Row { + + } +} \ No newline at end of file diff --git a/ts/docx/tabStop.ts b/ts/docx/tabStop.ts new file mode 100644 index 0000000000..1038941ced --- /dev/null +++ b/ts/docx/tabStop.ts @@ -0,0 +1,5 @@ +module docx { + export class TapStop { + + } +} \ No newline at end of file diff --git a/ts/docx/table.ts b/ts/docx/table.ts new file mode 100644 index 0000000000..26cad13375 --- /dev/null +++ b/ts/docx/table.ts @@ -0,0 +1,5 @@ +module docx { + export class Table { + + } +} \ No newline at end of file diff --git a/ts/docx/text.ts b/ts/docx/text.ts new file mode 100644 index 0000000000..5db28a114a --- /dev/null +++ b/ts/docx/text.ts @@ -0,0 +1,5 @@ +module docx { + export class Text { + + } +} \ No newline at end of file