@adobe/premierepro 26.3.0-beta.29 → 26.3.0-beta.39
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 +1 -1
- package/src/premierepro.d.ts +21 -0
package/package.json
CHANGED
package/src/premierepro.d.ts
CHANGED
|
@@ -460,6 +460,13 @@ export declare type AudioTrackStatic = {
|
|
|
460
460
|
};
|
|
461
461
|
|
|
462
462
|
export declare type AudioTrack = {
|
|
463
|
+
/**
|
|
464
|
+
* Action to change the name of the track
|
|
465
|
+
*
|
|
466
|
+
* @param name
|
|
467
|
+
*/
|
|
468
|
+
createSetNameAction(name: string): object;
|
|
469
|
+
|
|
463
470
|
/**
|
|
464
471
|
* sets the mute state of the track to muted/unmuted
|
|
465
472
|
*
|
|
@@ -509,6 +516,13 @@ export declare type AudioTrack = {
|
|
|
509
516
|
export declare type CaptionTrackStatic = {};
|
|
510
517
|
|
|
511
518
|
export declare type CaptionTrack = {
|
|
519
|
+
/**
|
|
520
|
+
* Action to change the name of the track
|
|
521
|
+
*
|
|
522
|
+
* @param name
|
|
523
|
+
*/
|
|
524
|
+
createSetNameAction(name: string): object;
|
|
525
|
+
|
|
512
526
|
/**
|
|
513
527
|
* sets the mute state of the track to muted/unmuted
|
|
514
528
|
*
|
|
@@ -4002,6 +4016,13 @@ export declare type VideoTrackStatic = {
|
|
|
4002
4016
|
};
|
|
4003
4017
|
|
|
4004
4018
|
export declare type VideoTrack = {
|
|
4019
|
+
/**
|
|
4020
|
+
* Action to change the name of the track
|
|
4021
|
+
*
|
|
4022
|
+
* @param name
|
|
4023
|
+
*/
|
|
4024
|
+
createSetNameAction(name: string): object;
|
|
4025
|
+
|
|
4005
4026
|
/**
|
|
4006
4027
|
* sets the mute state of the track to muted/unmuted
|
|
4007
4028
|
*
|