added initial classes

This commit is contained in:
Dolan Miu
2016-03-27 02:28:47 +01:00
parent fc1d87641a
commit aea4b43e28
6 changed files with 31 additions and 0 deletions

6
ts/docx/docx.ts Normal file
View File

@ -0,0 +1,6 @@
module docx {
export class Docx {
}
}

5
ts/docx/paragraph.ts Normal file
View File

@ -0,0 +1,5 @@
module docx {
export class Paragraph {
}
}

5
ts/docx/row.ts Normal file
View File

@ -0,0 +1,5 @@
module docx {
export class Row {
}
}

5
ts/docx/tabStop.ts Normal file
View File

@ -0,0 +1,5 @@
module docx {
export class TapStop {
}
}

5
ts/docx/table.ts Normal file
View File

@ -0,0 +1,5 @@
module docx {
export class Table {
}
}

5
ts/docx/text.ts Normal file
View File

@ -0,0 +1,5 @@
module docx {
export class Text {
}
}