Browse Source

fix for when no implicit type (#4903)

fix for no implicit type

Co-authored-by: Sergio Wilson <sergio.wilson@foxpoint.com>
pull/4924/head
Sergio Wilson 3 years ago
committed by GitHub
parent
commit
3a80fd074c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      index.d.ts

2
index.d.ts

@ -26,7 +26,7 @@ declare namespace Backbone {
forEach(iterator: (item: TModel) => void, context?: any): TModel[]; forEach(iterator: (item: TModel) => void, context?: any): TModel[];
filter(iterator: (item: TModel) => boolean, context?: any): TModel[]; filter(iterator: (item: TModel) => boolean, context?: any): TModel[];
map(iterator: (item: TModel) => any, context?: any): any[]; map(iterator: (item: TModel) => any, context?: any): any[];
each(callback: (item: TModel) => void); each(callback: (item: TModel) => void): void;
} }
interface GenericModel extends Model<{}> { } interface GenericModel extends Model<{}> { }

Loading…
Cancel
Save