@adobe/premierepro 26.5.0-beta.29 → 26.5.0-beta.59
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 +22 -3
package/package.json
CHANGED
package/src/premierepro.d.ts
CHANGED
|
@@ -371,7 +371,7 @@ export declare type Application = {
|
|
|
371
371
|
/**
|
|
372
372
|
* @readonly
|
|
373
373
|
*/
|
|
374
|
-
readonly version: string
|
|
374
|
+
readonly version: Promise<string>;
|
|
375
375
|
};
|
|
376
376
|
|
|
377
377
|
export declare type AudioClipTrackItemStatic = {
|
|
@@ -2033,17 +2033,29 @@ export declare type Media = {
|
|
|
2033
2033
|
*/
|
|
2034
2034
|
createSetStartAction(time: TickTime): Action;
|
|
2035
2035
|
|
|
2036
|
+
/**
|
|
2037
|
+
* Get the media start time.
|
|
2038
|
+
*/
|
|
2039
|
+
getStart(): TickTime;
|
|
2040
|
+
|
|
2041
|
+
/**
|
|
2042
|
+
* Get the media duration.
|
|
2043
|
+
*/
|
|
2044
|
+
getDuration(): TickTime;
|
|
2045
|
+
|
|
2036
2046
|
/**
|
|
2037
2047
|
* Get the media start time
|
|
2038
2048
|
* @readonly
|
|
2049
|
+
* @deprecated Use getStart() instead.
|
|
2039
2050
|
*/
|
|
2040
|
-
readonly start: TickTime
|
|
2051
|
+
readonly start: Promise<TickTime>;
|
|
2041
2052
|
|
|
2042
2053
|
/**
|
|
2043
2054
|
* Get the media duration
|
|
2044
2055
|
* @readonly
|
|
2056
|
+
* @deprecated Use getDuration() instead.
|
|
2045
2057
|
*/
|
|
2046
|
-
readonly duration: TickTime
|
|
2058
|
+
readonly duration: Promise<TickTime>;
|
|
2047
2059
|
};
|
|
2048
2060
|
|
|
2049
2061
|
export declare type MediaManagerStatic = {
|
|
@@ -4500,6 +4512,13 @@ export declare type TranscriptStatic = {
|
|
|
4500
4512
|
*/
|
|
4501
4513
|
querySupportedLanguages(): Array<{ displayString: string; languageCode: string; locale: string }>;
|
|
4502
4514
|
|
|
4515
|
+
/**
|
|
4516
|
+
* Returns true if the language pack for the given language code is available ex:isLanguagePackAvailable('en-US')
|
|
4517
|
+
*
|
|
4518
|
+
* @param language
|
|
4519
|
+
*/
|
|
4520
|
+
isLanguagePackAvailable(language: string): boolean;
|
|
4521
|
+
|
|
4503
4522
|
/**
|
|
4504
4523
|
* Returns true if the ClipProjectItem has an existing transcript
|
|
4505
4524
|
*
|