@adobe/premierepro 26.3.0-beta.39 → 26.3.0-beta.43
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 +9 -1
package/package.json
CHANGED
package/src/premierepro.d.ts
CHANGED
|
@@ -2161,6 +2161,14 @@ export declare type Project = {
|
|
|
2161
2161
|
*/
|
|
2162
2162
|
createSequence(name: string, presetPath?: string): Promise<Sequence>;
|
|
2163
2163
|
|
|
2164
|
+
/**
|
|
2165
|
+
* Create a new sequence with a preset path
|
|
2166
|
+
*
|
|
2167
|
+
* @param name
|
|
2168
|
+
* @param presetPath
|
|
2169
|
+
*/
|
|
2170
|
+
createSequenceWithPresetPath(name: string, presetPath: string): Promise<Sequence>;
|
|
2171
|
+
|
|
2164
2172
|
/**
|
|
2165
2173
|
* Create a new sequence with a given name and medias
|
|
2166
2174
|
*
|
|
@@ -2807,7 +2815,7 @@ export declare type Sequence = {
|
|
|
2807
2815
|
*
|
|
2808
2816
|
* @param trackItemSelection
|
|
2809
2817
|
*/
|
|
2810
|
-
setSelection(trackItemSelection: TrackItemSelection):
|
|
2818
|
+
setSelection(trackItemSelection: TrackItemSelection): boolean;
|
|
2811
2819
|
|
|
2812
2820
|
/**
|
|
2813
2821
|
* Get video track count from this sequence
|