@pubwave/editor 0.5.5 → 0.5.7

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
@@ -1434,6 +1434,16 @@ export declare function useAutoScroll(scrollContainer?: HTMLElement | null): {
1434
1434
  export { }
1435
1435
 
1436
1436
 
1437
+ declare module '@tiptap/core' {
1438
+ interface Commands<ReturnType> {
1439
+ textAlign: {
1440
+ setTextAlign: (alignment: TextAlignValue) => ReturnType;
1441
+ unsetTextAlign: () => ReturnType;
1442
+ };
1443
+ }
1444
+ }
1445
+
1446
+
1437
1447
  declare module '@tiptap/core' {
1438
1448
  interface Commands<ReturnType> {
1439
1449
  textColor: {