chore: 0.4.18-rc3 (#740)

main
bokuweb 2024-07-12 12:21:21 +09:00 committed by GitHub
parent 3a41aedda9
commit 86f010b0c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 10 additions and 1 deletions

View File

@ -0,0 +1,5 @@
import type { PositionalTabAlignmentType } from "./PositionalTabAlignmentType";
import type { PositionalTabRelativeTo } from "./PositionalTabRelativeTo";
import type { TabLeaderType } from "./TabLeaderType";
export interface PositionalTab { alignment: PositionalTabAlignmentType, relative_to: PositionalTabRelativeTo, leader: TabLeaderType, }

View File

@ -0,0 +1,2 @@
export type PositionalTabAlignmentType = "center" | "left" | "right";

View File

@ -0,0 +1,2 @@
export type PositionalTabRelativeTo = "Indent" | "Margin";

View File

@ -1,6 +1,6 @@
{
"name": "docx-wasm",
"version": "0.4.18-rc2",
"version": "0.4.18-rc3",
"main": "dist/node/index.js",
"browser": "dist/web/index.js",
"author": "bokuweb <bokuweb12@gmail.com>",