@adobe/premierepro 26.3.0-beta.44 → 26.3.0-beta.54
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 +15 -3
package/package.json
CHANGED
package/src/premierepro.d.ts
CHANGED
|
@@ -3241,7 +3241,7 @@ export declare type SequenceEditor = {
|
|
|
3241
3241
|
inTime: TickTime,
|
|
3242
3242
|
inVideoTrackIndex: number,
|
|
3243
3243
|
inAudioTrackIndex: number
|
|
3244
|
-
):
|
|
3244
|
+
): Array<VideoClipTrackItem | AudioClipTrackItem>;
|
|
3245
3245
|
|
|
3246
3246
|
/**
|
|
3247
3247
|
* Insert input MGT into sequence with time and index defined
|
|
@@ -3258,7 +3258,7 @@ export declare type SequenceEditor = {
|
|
|
3258
3258
|
inTime: TickTime,
|
|
3259
3259
|
inVideoTrackIndex: number,
|
|
3260
3260
|
inAudioTrackIndex: number
|
|
3261
|
-
):
|
|
3261
|
+
): Array<VideoClipTrackItem | AudioClipTrackItem>;
|
|
3262
3262
|
};
|
|
3263
3263
|
|
|
3264
3264
|
export declare type SequenceSettingsStatic = {
|
|
@@ -3897,7 +3897,7 @@ export declare type TrackItemSelection = {
|
|
|
3897
3897
|
/**
|
|
3898
3898
|
* return list of trackItems inside of trackItemSelection
|
|
3899
3899
|
*/
|
|
3900
|
-
getTrackItems(): Promise<
|
|
3900
|
+
getTrackItems(): Promise<Array<VideoClipTrackItem | AudioClipTrackItem>>;
|
|
3901
3901
|
};
|
|
3902
3902
|
|
|
3903
3903
|
export declare type TransitionFactoryStatic = {
|
|
@@ -4379,6 +4379,18 @@ export declare type TranscriptStatic = {
|
|
|
4379
4379
|
clipProjectItem: ClipProjectItem
|
|
4380
4380
|
): Action;
|
|
4381
4381
|
|
|
4382
|
+
/**
|
|
4383
|
+
* Returns the list of language services available for transcription
|
|
4384
|
+
*/
|
|
4385
|
+
querySupportedLanguages(): Array<{ displayString: string; languageCode: string; locale: string }>;
|
|
4386
|
+
|
|
4387
|
+
/**
|
|
4388
|
+
* Returns true if the ClipProjectItem has an existing transcript
|
|
4389
|
+
*
|
|
4390
|
+
* @param clipProjectItem
|
|
4391
|
+
*/
|
|
4392
|
+
hasTranscript(clipProjectItem: ClipProjectItem): boolean;
|
|
4393
|
+
|
|
4382
4394
|
/**
|
|
4383
4395
|
* Export transcripts inside of clipProjectItem as JSON string if transcript exist
|
|
4384
4396
|
*
|