Skip to content

Commit 9ea2eb7

Browse files
committed
Fix: Sequence.clone returns boolean
1 parent 701727e commit 9ea2eb7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Premiere/13.0/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@ declare class Sequence {
180180

181181
/**
182182
* Clones a sequence.
183-
* @returns the clone Sequence.
183+
* @returns a boolean indicating whether the cloning was successful.
184184
*/
185-
clone(): Sequence
185+
clone(): boolean
186186

187187
/**
188188
* Creates a new sequence from the source sequence's in and out points.

Premiere/14.0/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ declare class Sequence {
153153

154154
/**
155155
* Clones a sequence.
156-
* @returns the clone Sequence.
156+
* @returns a boolean indicating whether the cloning was successful.
157157
*/
158-
clone(): Sequence
158+
clone(): boolean
159159

160160
/**
161161
* Creates a new sequence from the source sequence's in and out points.

Premiere/15.0/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ declare class Sequence {
172172

173173
/**
174174
* Clones a sequence.
175-
* @returns the clone Sequence.
175+
* @returns a boolean indicating whether the cloning was successful.
176176
*/
177-
clone(): Sequence
177+
clone(): boolean
178178

179179
/**
180180
* Creates a new sequence from the source sequence's in and out points.

0 commit comments

Comments
 (0)