diff --git a/marionette/marionette.d.ts b/marionette/marionette.d.ts index cf6adfd02..ee528b666 100644 --- a/marionette/marionette.d.ts +++ b/marionette/marionette.d.ts @@ -43,7 +43,7 @@ declare module Backbone { last(): View; last(n: number): View[]; lastIndexOf(element: View, fromIndex?: number): number; - map(iterator: (element: View, index: number, context?: any) => any[], context?: any): any[]; + map(iterator: (element: View, index: number, context?: any) => U, context?: any): U[]; pluck(attribute: string): any[]; reject(iterator: (element: View, index: number) => boolean, context?: any): View[]; rest(): View;