mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
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:
Vendored
+1
-1
@@ -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
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user