@kimdayoun/hwpx-mcp 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,76 @@
1
+ import JSZip from 'jszip';
2
+ import { HwpxContent } from './types';
3
+ export * from './types';
4
+ export declare class HwpxParser {
5
+ private static styles;
6
+ static parse(zip: JSZip): Promise<HwpxContent>;
7
+ private static parseScriptCode;
8
+ private static parseXmlTemplate;
9
+ private static readXmlFile;
10
+ private static parseMetadata;
11
+ private static parseDocSetting;
12
+ private static parseMemoShapes;
13
+ private static parseStyles;
14
+ private static parseFonts;
15
+ private static parseCharShapes;
16
+ private static parseParaShapes;
17
+ private static parseBorderFills;
18
+ private static parseTabDefs;
19
+ private static parseNumberings;
20
+ private static parseBullets;
21
+ private static parseStyleDefs;
22
+ private static parseImages;
23
+ private static parseSection;
24
+ private static parseEndnotes;
25
+ private static parseHiddenComments;
26
+ private static parseHeaderFooter;
27
+ private static parseFootnotes;
28
+ private static parsePageSettings;
29
+ private static parseSectionProperties;
30
+ private static parseMasterPages;
31
+ private static parseColumnDef;
32
+ private static parseImageEffects;
33
+ private static parseParagraphsSimple;
34
+ private static parseParagraph;
35
+ private static parseRun;
36
+ private static processTextContent;
37
+ private static parseTable;
38
+ private static parseTableRow;
39
+ private static extractBalancedTags;
40
+ private static extractAllParagraphs;
41
+ private static parseTableCell;
42
+ private static parseCellContent;
43
+ private static parseImageElement;
44
+ private static decodeXmlEntities;
45
+ static updateZip(zip: JSZip, content: HwpxContent): Promise<void>;
46
+ private static updateSectionXml;
47
+ private static updateParagraphXml;
48
+ private static escapeXml;
49
+ private static parseLine;
50
+ private static parseRect;
51
+ private static parseEllipse;
52
+ private static parseTextBox;
53
+ private static parseHorizontalRules;
54
+ private static parseNumber;
55
+ private static parseShapeObject;
56
+ private static parseDrawingObject;
57
+ private static parseArc;
58
+ private static parsePolygon;
59
+ private static parseCurve;
60
+ private static parseConnectLine;
61
+ private static parseContainer;
62
+ private static parseOle;
63
+ private static parseEquation;
64
+ private static parseTextArt;
65
+ private static parseUnknownObject;
66
+ private static parseFormObject;
67
+ private static parseButton;
68
+ private static parseRadioButton;
69
+ private static parseCheckButton;
70
+ private static parseComboBox;
71
+ private static parseEdit;
72
+ private static parseListBox;
73
+ private static parseScrollBar;
74
+ private static parseCompatibleDocument;
75
+ private static parseBinDataStorage;
76
+ }