mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-30 11:14:27 +08:00
Merge pull request #3677 from jiaweihli/marionette
fix(marionette): generi-fy Backbone.Babysitter.map
This commit is contained in:
Vendored
+1
-1
@@ -43,7 +43,7 @@ declare module Backbone {
|
||||
last(): View<TModel>;
|
||||
last(n: number): View<TModel>[];
|
||||
lastIndexOf(element: View<TModel>, fromIndex?: number): number;
|
||||
map(iterator: (element: View<TModel>, index: number, context?: any) => any[], context?: any): any[];
|
||||
map<U>(iterator: (element: View<TModel>, index: number, context?: any) => U, context?: any): U[];
|
||||
pluck(attribute: string): any[];
|
||||
reject(iterator: (element: View<TModel>, index: number) => boolean, context?: any): View<TModel>[];
|
||||
rest(): View<TModel>;
|
||||
|
||||
Reference in New Issue
Block a user