@rendley/sdk 1.1.0 → 1.1.1
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.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/modules/clip/ClipStyle.d.ts +1 -0
- package/dist/modules/clip/clips/audio/AudioClip.d.ts +0 -1
- package/dist/modules/clip/clips/text/TextClip.d.ts +1 -0
- package/dist/modules/clip/clips/video/VideoClip.d.ts +1 -1
- package/package.json +1 -1
|
@@ -87,6 +87,7 @@ export declare class ClipStyle<T extends PIXI.Sprite = PIXI.Sprite> {
|
|
|
87
87
|
update(sprite: T): void;
|
|
88
88
|
private setCornerRadiusOnSprite;
|
|
89
89
|
protected emitUpdateEvent(property: string, value: unknown): boolean;
|
|
90
|
+
destroy(): void;
|
|
90
91
|
serialize(): {
|
|
91
92
|
clipId: string;
|
|
92
93
|
alpha: number;
|
|
@@ -46,6 +46,6 @@ export declare class VideoClip extends Clip<PIXI.Sprite, ClipStyle<PIXI.Sprite>>
|
|
|
46
46
|
mute(): void;
|
|
47
47
|
unMute(): void;
|
|
48
48
|
extractMonoAudioData(startTime: number, endTime: number): Promise<Float32Array | null>;
|
|
49
|
-
|
|
49
|
+
destroy(): void;
|
|
50
50
|
clone(): Clip<PIXI.Sprite, ClipStyle<PIXI.Sprite>>;
|
|
51
51
|
}
|