-
Notifications
You must be signed in to change notification settings - Fork 7
/
mod.ts
110 lines (107 loc) · 3.9 KB
/
mod.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Top-level API
export { Docx as default } from './src/Docx.ts';
// Content components
export {
type BookmarkRangeEndChild,
type BookmarkRangeEndProps,
BookmarkRangeEnd,
} from './src/components/BookmarkRangeEnd.ts';
export {
type BookmarkRangeStartChild,
type BookmarkRangeStartProps,
BookmarkRangeStart,
} from './src/components/BookmarkRangeStart.ts';
export { type BreakChild, type BreakProps, Break } from './src/components/Break.ts';
export { type CellChild, type CellProps, Cell } from './src/components/Cell.ts';
export { type CommentChild, type CommentProps, Comment } from './src/components/Comment.ts';
export {
type CommentRangeEndChild,
type CommentRangeEndProps,
CommentRangeEnd,
} from './src/components/CommentRangeEnd.ts';
export {
type CommentRangeStartChild,
type CommentRangeStartProps,
CommentRangeStart,
} from './src/components/CommentRangeStart.ts';
export { type FieldChild, type FieldProps, Field } from './src/components/Field.ts';
export {
type FieldRangeEndChild,
type FieldRangeEndProps,
FieldRangeEnd,
} from './src/components/FieldRangeEnd.ts';
export {
type FieldRangeInstructionChild,
type FieldRangeInstructionProps,
FieldRangeInstruction,
} from './src/components/FieldRangeInstruction.ts';
export {
type FieldRangeSeparatorChild,
type FieldRangeSeparatorProps,
FieldRangeSeparator,
} from './src/components/FieldRangeSeparator.ts';
export {
type FieldRangeStartChild,
type FieldRangeStartProps,
FieldRangeStart,
} from './src/components/FieldRangeStart.ts';
export {
FileMime
} from './src/enums.ts';
export { type HyperlinkChild, type HyperlinkProps, Hyperlink } from './src/components/Hyperlink.ts';
export { type ImageChild, type ImageProps, Image } from './src/components/Image.ts';
export {
type NonBreakingHyphenChild,
type NonBreakingHyphenProps,
NonBreakingHyphen,
} from './src/components/NonBreakingHyphen.ts';
export { type ParagraphChild, type ParagraphProps, Paragraph } from './src/components/Paragraph.ts';
export { type RowChild, type RowProps, Row } from './src/components/Row.ts';
export {
type RowAdditionChild,
type RowAdditionProps,
RowAddition,
} from './src/components/RowAddition.ts';
export {
type RowDeletionChild,
type RowDeletionProps,
RowDeletion,
} from './src/components/RowDeletion.ts';
export { type SectionChild, type SectionProps, Section } from './src/components/Section.ts';
export { type SymbolChild, type SymbolProps, Symbol } from './src/components/Symbol.ts';
export { type TabChild, type TabProps, Tab } from './src/components/Tab.ts';
export { type TableChild, type TableProps, Table } from './src/components/Table.ts';
export { type TextChild, type TextProps, Text } from './src/components/Text.ts';
export {
type TextAdditionChild,
type TextAdditionProps,
TextAddition,
} from './src/components/TextAddition.ts';
export {
type TextDeletionChild,
type TextDeletionProps,
TextDeletion,
} from './src/components/TextDeletion.ts';
export {
type WatermarkTextChild,
type WatermarkTextProps,
WatermarkText,
} from './src/components/WatermarkText.ts';
// Utility functions
export { RelationshipType } from './src/enums.ts';
export { jsx } from './src/utilities/jsx.ts';
export { type Length, cm, emu, hpt, inch, opt, pt, twip } from './src/utilities/length.ts';
// Archive component types
export { type CommentsXml } from './src/files/CommentsXml.ts';
export { type ContentTypesXml } from './src/files/ContentTypesXml.ts';
export { type CustomPropertiesXml, CustomPropertyType } from './src/files/CustomPropertiesXml.ts';
export { type DocumentChild, type DocumentXml } from './src/files/DocumentXml.ts';
export {
type FooterXml,
type HeaderFooterChild,
type HeaderXml,
} from './src/files/HeaderFooterXml.ts';
export { type NumberingXml } from './src/files/NumberingXml.ts';
export { type RelationshipsXml } from './src/files/RelationshipsXml.ts';
export { type SettingsXml } from './src/files/SettingsXml.ts';
export { type StylesXml } from './src/files/StylesXml.ts';