Skip to content

Commit f8df11e

Browse files
authored
Merge pull request #123 from galaddirie/master
Fix: Sequence.clone returns boolean
2 parents cced191 + 9ea2eb7 commit f8df11e

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
@@ -213,9 +213,9 @@ declare class Sequence {
213213

214214
/**
215215
* Clones a sequence.
216-
* @returns the clone Sequence.
216+
* @returns a boolean indicating whether the cloning was successful.
217217
*/
218-
clone(): Sequence
218+
clone(): boolean
219219

220220
/**
221221
* Creates a caption track in the active sequence using caption data from a project item.

0 commit comments

Comments
 (0)