@mce/bigesj 0.24.0 → 0.24.2

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.
@@ -1,2 +1,5 @@
1
+ import type { Effect } from 'modern-idoc';
2
+ import type { BigeElement } from './types';
3
+ export declare function convertImageEffects(el: BigeElement): Effect[] | undefined;
1
4
  export declare function cachedFetchImageBitmap(url: string): Promise<ImageBitmap>;
2
5
  export declare function convertImageElementToUrl(el: Record<string, any>): Promise<string>;
@@ -1,6 +1,8 @@
1
- import type { NormalizedTextContent, StyleObject } from 'modern-idoc';
1
+ import type { NormalizedTextContent, StyleObject, TextDeformation } from 'modern-idoc';
2
2
  import type { BigeElement } from './types';
3
3
  export declare function convertTextStyle(el: BigeElement, isByWord?: boolean): Partial<StyleObject>;
4
4
  export declare function convertTextEffects(el: BigeElement): Promise<Partial<StyleObject>[] | undefined>;
5
+ export declare function convertDeformationType(oldType: string): string;
6
+ export declare function convertTextDeformation(el: BigeElement): TextDeformation | undefined;
5
7
  export declare function getTextContents(el: BigeElement): BigeElement['contents'];
6
8
  export declare function convertTextContent(el: BigeElement, isByWord?: boolean): NormalizedTextContent;