We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f42610 commit d09f1d3Copy full SHA for d09f1d3
1 file changed
types/backbone/backbone-tests.ts
@@ -225,7 +225,7 @@ class Book extends Backbone.Model {
225
class Library extends Backbone.Collection<Book> {
226
// This model definition is here only to test type compatibility of the model, but it
227
// is not necessary in working code as it is automatically inferred through generics.
228
- model: typeof Book;
+ declare model: typeof Book;
229
230
constructor(models?: Book[] | Array<Record<string, any>>, options?: any) {
231
super(models, options);
0 commit comments