Fix compiler warning for Bloodhound constructor

Typescript 1.5.3 compiler flags the constructor's lack of a trailing semicolon.
This commit is contained in:
Matt Bailey
2015-07-29 15:53:24 -07:00
parent dd4d30bbc3
commit a040564265
+1 -1
View File
@@ -352,7 +352,7 @@ declare module Bloodhound
}
declare class Bloodhound<T> {
constructor(options: Bloodhound.BloodhoundOptions<T>)
constructor(options: Bloodhound.BloodhoundOptions<T>);
/**
* wraps the suggestion engine in an adapter that is compatible with the typeahead jQuery plugin
*/