@adobe/premierepro 26.3.0-beta.65 → 26.3.0-beta.67

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/premierepro",
3
- "version": "26.3.0-beta.65",
3
+ "version": "26.3.0-beta.67",
4
4
  "description": "The TypeScript definitions and declarations for UXP APIs in Premiere",
5
5
  "license": "Apache-2.0",
6
6
  "bugs": {
@@ -131,7 +131,7 @@ export declare type AAFExportOptions = {
131
131
  *
132
132
  * @param audioFileFormat
133
133
  */
134
- setAudioFileFormat(audioFileFormat: number): AAFExportOptions;
134
+ setAudioFileFormat(audioFileFormat: Constants.AAFExportAudioFormat): AAFExportOptions;
135
135
 
136
136
  /**
137
137
  * Set whether to trim sources
@@ -3726,6 +3726,13 @@ export declare type SourceMonitorStatic = {
3726
3726
  */
3727
3727
  getPosition(): Promise<TickTime>;
3728
3728
 
3729
+ /**
3730
+ * Set position of source monitor to the given TickTime
3731
+ *
3732
+ * @param position
3733
+ */
3734
+ setPosition(position: TickTime): Promise<boolean>;
3735
+
3729
3736
  /**
3730
3737
  * Play clip at source monitor with input speed
3731
3738
  *
@@ -4438,6 +4445,11 @@ export declare type TranscriptStatic = {
4438
4445
  export declare type Transcript = {};
4439
4446
 
4440
4447
  export namespace Constants {
4448
+ export enum AAFExportAudioFormat {
4449
+ AIFF,
4450
+ WAV,
4451
+ }
4452
+
4441
4453
  export enum AudioChannelType {
4442
4454
  MONO,
4443
4455
  STEREO,