parent
19e8708057
commit
e33f4b292d
|
@ -35,16 +35,18 @@ export type DocxJSON = {
|
||||||
comments: CommentJSON[];
|
comments: CommentJSON[];
|
||||||
};
|
};
|
||||||
numberings: NumberingsJSON;
|
numberings: NumberingsJSON;
|
||||||
settings: {
|
settings: SettingsJSON;
|
||||||
// w15:docId
|
|
||||||
docId: string | null;
|
|
||||||
defaultTabStop: number;
|
|
||||||
zoom: number;
|
|
||||||
docVars: { name: string; val: string }[];
|
|
||||||
};
|
|
||||||
fontTable: {};
|
fontTable: {};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type SettingsJSON = {
|
||||||
|
// w15:docId
|
||||||
|
docId: string | null;
|
||||||
|
defaultTabStop: number;
|
||||||
|
zoom: number;
|
||||||
|
docVars: { name: string; val: string }[];
|
||||||
|
};
|
||||||
|
|
||||||
export * from "./styles";
|
export * from "./styles";
|
||||||
export * from "./border";
|
export * from "./border";
|
||||||
export * from "./document";
|
export * from "./document";
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "docx-wasm",
|
"name": "docx-wasm",
|
||||||
"version": "0.0.180",
|
"version": "0.0.181",
|
||||||
"main": "dist/node/index.js",
|
"main": "dist/node/index.js",
|
||||||
"browser": "dist/web/index.js",
|
"browser": "dist/web/index.js",
|
||||||
"author": "bokuweb <bokuweb12@gmail.com>",
|
"author": "bokuweb <bokuweb12@gmail.com>",
|
||||||
|
|
Loading…
Reference in New Issue