@cliquify.me/state 4.0.18 → 4.0.20

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.
@@ -3,6 +3,7 @@ import { State, IAudio } from '@cliquify.me/types';
3
3
  interface AddAudioOptions {
4
4
  targetTrackIndex?: number;
5
5
  targetTrackId?: string;
6
+ isNewTrack?: boolean;
6
7
  }
7
8
  export declare function addAudio(state: State, payload: IAudio, options?: AddAudioOptions): Promise<Partial<State>>;
8
9
  export {};
@@ -5,6 +5,7 @@ interface AddImageOptions {
5
5
  targetTrackId?: string;
6
6
  scaleMode?: string;
7
7
  scaleAspectRatio?: number;
8
+ isNewTrack?: boolean;
8
9
  }
9
10
  export declare function addImage(state: State, payload: IImage, options?: AddImageOptions): Promise<Partial<State>>;
10
11
  export {};
@@ -5,6 +5,7 @@ interface AddVideoOptions {
5
5
  targetTrackId?: string;
6
6
  scaleMode?: string;
7
7
  scaleAspectRatio?: number;
8
+ isNewTrack?: boolean;
8
9
  }
9
10
  export declare function addVideo(state: State, payload: IVideo, options?: AddVideoOptions): Promise<Partial<State>>;
10
11
  export {};