diff --git a/Q/q.module-tests.ts b/Q/q.module-tests.ts index 8cb4457527..02116c2e85 100644 --- a/Q/q.module-tests.ts +++ b/Q/q.module-tests.ts @@ -72,4 +72,4 @@ Q.allResolved([]) var exception = promise.valueOf().exception; } }) -}); +}); \ No newline at end of file diff --git a/googlemaps/google.maps.d.ts b/googlemaps/google.maps.d.ts index 340387c444..3596da3d49 100644 --- a/googlemaps/google.maps.d.ts +++ b/googlemaps/google.maps.d.ts @@ -1123,7 +1123,7 @@ declare module google.maps { worldSize?: Size; } - export interface StreetViewService { + export class StreetViewService { getPanoramaById(pano: string, callback: (streetViewPanoramaData: StreetViewPanoramaData, streetViewStatus: StreetViewStatus) => void ); getPanoramaByLocation(latlng: LatLng, radius: number, callback: (streetViewPanoramaData: StreetViewPanoramaData, streetViewStatus: StreetViewStatus) => void ); } diff --git a/jasmine/jasmine.d.ts b/jasmine/jasmine.d.ts index 56f41b48f1..05e4370040 100644 --- a/jasmine/jasmine.d.ts +++ b/jasmine/jasmine.d.ts @@ -7,7 +7,8 @@ declare function describe(description: string, specDefinitions: Function): void; declare function xdescribe(description: string, specDefinitions: Function): void; -declare function it(expectation: string, assertion: Function): void; +declare function it(expectation: string, assertion: () => void ): void; +declare function it(expectation: string, assertion: (done: (err?) => void) => void ): void; declare function xit(expectation: string, assertion: Function): void; declare function beforeEach(action: Function): void; diff --git a/jquery/jquery.d.ts b/jquery/jquery.d.ts index af17e8d6ba..41d7d5e613 100644 --- a/jquery/jquery.d.ts +++ b/jquery/jquery.d.ts @@ -714,7 +714,7 @@ interface JQuery { ***********/ length: number; selector: string; - [x: string]: HTMLElement; + [x: string]: any; [x: number]: HTMLElement; /**********