From a040564265873ef9bb2dad983e477741c7325671 Mon Sep 17 00:00:00 2001 From: Matt Bailey Date: Wed, 29 Jul 2015 15:53:24 -0700 Subject: [PATCH] Fix compiler warning for Bloodhound constructor Typescript 1.5.3 compiler flags the constructor's lack of a trailing semicolon. --- typeahead/typeahead.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typeahead/typeahead.d.ts b/typeahead/typeahead.d.ts index d377bf75b..159caaacd 100644 --- a/typeahead/typeahead.d.ts +++ b/typeahead/typeahead.d.ts @@ -352,7 +352,7 @@ declare module Bloodhound } declare class Bloodhound { - constructor(options: Bloodhound.BloodhoundOptions) + constructor(options: Bloodhound.BloodhoundOptions); /** * wraps the suggestion engine in an adapter that is compatible with the typeahead jQuery plugin */