From 15702847a6a29624fd74cd45b5708236558e08fe Mon Sep 17 00:00:00 2001 From: bokuweb Date: Mon, 14 Dec 2020 17:44:47 +0900 Subject: [PATCH] Fix json type (#210) * fix: type * 0.0.122 --- docx-wasm/js/json/styles.ts | 4 +++- docx-wasm/package.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docx-wasm/js/json/styles.ts b/docx-wasm/js/json/styles.ts index 2d777ec..1129615 100644 --- a/docx-wasm/js/json/styles.ts +++ b/docx-wasm/js/json/styles.ts @@ -14,7 +14,9 @@ export type StyleJSON = { export type StylesJSON = { docDefaults: { - runPropertyDefault: RunPropertyJSON; + runPropertyDefault: { + runProperty: RunPropertyJSON; + }; }; styles: StyleJSON[]; }; diff --git a/docx-wasm/package.json b/docx-wasm/package.json index 81ff075..0e95783 100644 --- a/docx-wasm/package.json +++ b/docx-wasm/package.json @@ -1,6 +1,6 @@ { "name": "docx-wasm", - "version": "0.0.121", + "version": "0.0.122", "main": "dist/node/index.js", "browser": "dist/web/index.js", "author": "bokuweb ",