libpag 4.5.2 → 4.5.3
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/lib/libpag.cjs.js +5459 -5198
- package/lib/libpag.cjs.js.map +1 -1
- package/lib/libpag.esm.js +5459 -5198
- package/lib/libpag.esm.js.map +1 -1
- package/lib/libpag.min.js +1 -1
- package/lib/libpag.min.js.map +1 -1
- package/lib/libpag.umd.js +5459 -5198
- package/lib/libpag.umd.js.map +1 -1
- package/lib/libpag.wasm +0 -0
- package/package.json +3 -3
- package/src/.pag.wasm-mt.md5 +1 -1
- package/src/.pag.wasm.md5 +1 -1
- package/src/wasm/libpag.js +6 -7
- package/src/wasm/libpag.wasm +0 -0
- package/src/wasm-mt/libpag.js +18 -2
- package/src/wasm-mt/libpag.wasm +0 -0
- package/types/web/src/pag-composition.d.ts +1 -1
- package/types/web/src/pag-layer.d.ts +1 -1
- package/types/web/src/types.d.ts +2 -2
package/src/wasm-mt/libpag.wasm
CHANGED
|
Binary file
|
|
@@ -83,7 +83,7 @@ export declare class PAGComposition extends PAGLayer {
|
|
|
83
83
|
/**
|
|
84
84
|
* Returns the audio markers of this composition.
|
|
85
85
|
*/
|
|
86
|
-
audioMarkers(): import("
|
|
86
|
+
audioMarkers(): import("../../third_party/tgfx/web/src/types").Vector<Marker>;
|
|
87
87
|
/**
|
|
88
88
|
* Indicates when the first frame of the audio plays in the composition's timeline.
|
|
89
89
|
*/
|
|
@@ -64,7 +64,7 @@ export declare class PAGLayer {
|
|
|
64
64
|
/**
|
|
65
65
|
* Returns the markers of this layer.
|
|
66
66
|
*/
|
|
67
|
-
markers(): import("
|
|
67
|
+
markers(): import("../../third_party/tgfx/web/src/types").Vector<Marker>;
|
|
68
68
|
/**
|
|
69
69
|
* Converts the time from the PAGLayer's (local) timeline to the PAGSurface (global) timeline. The
|
|
70
70
|
* time is in microseconds.
|
package/types/web/src/types.d.ts
CHANGED
|
@@ -16,8 +16,8 @@ import { PAGSolidLayer } from './pag-solid-layer';
|
|
|
16
16
|
import { Matrix as ClassMatrix } from './core/matrix';
|
|
17
17
|
import { RenderCanvas } from './core/render-canvas';
|
|
18
18
|
import type { ScalerContextConstructor, VideoDecoderConstructor } from './interfaces';
|
|
19
|
-
import type { ArrayBufferImage } from '
|
|
20
|
-
import type { TGFXPathFillType, TGFXLineCap, TGFXLineJoin, EmscriptenGL, ctor, Point, Vector, Rect } from '
|
|
19
|
+
import type { ArrayBufferImage } from '../../third_party/tgfx/web/src/wechat/array-buffer-image';
|
|
20
|
+
import type { TGFXPathFillType, TGFXLineCap, TGFXLineJoin, EmscriptenGL, ctor, Point, Vector, Rect } from '../../third_party/tgfx/web/src/types';
|
|
21
21
|
export type { EmscriptenGL, ctor, Point, Vector, Rect };
|
|
22
22
|
declare global {
|
|
23
23
|
interface Window {
|