fixed implicit any

This commit is contained in:
lgrignon
2015-09-18 16:46:49 +02:00
parent 581d094508
commit 99a76bb801
+2 -2
View File
@@ -18,7 +18,7 @@ declare module Backbone {
constructor(name: string, serializer?: Serializer);
save();
save(): void;
// Add a model, giving it a (hopefully)-unique GUID, if it doesn't already
// have an id of it's own.
@@ -43,7 +43,7 @@ declare module Backbone {
_storageSize(): number;
_itemName(id): string;
_itemName(id: any): string;
}
}