Skip to content

Commit

Permalink
Merge pull request #1324 from outring/hotfix/find-typing
Browse files Browse the repository at this point in the history
IObservableArray.find() typing fix
  • Loading branch information
mweststrate authored Jan 31, 2018
2 parents a7c7b45 + 296a84b commit 64c3ee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/observablearray.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface IObservableArray<T> extends Array<T> {
predicate: (item: T, index: number, array: IObservableArray<T>) => boolean,
thisArg?: any,
fromIndex?: number
): T
): T | undefined
findIndex(
predicate: (item: T, index: number, array: IObservableArray<T>) => boolean,
thisArg?: any,
Expand Down

0 comments on commit 64c3ee2

Please sign in to comment.