@pubwave/editor 0.5.5 → 0.5.6

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.
package/dist/index.d.ts CHANGED
@@ -1446,3 +1446,13 @@ declare module '@tiptap/core' {
1446
1446
  };
1447
1447
  }
1448
1448
  }
1449
+
1450
+
1451
+ declare module '@tiptap/core' {
1452
+ interface Commands<ReturnType> {
1453
+ textAlign: {
1454
+ setTextAlign: (alignment: TextAlignValue) => ReturnType;
1455
+ unsetTextAlign: () => ReturnType;
1456
+ };
1457
+ }
1458
+ }