diff --git a/jasmine/index.d.ts b/jasmine/index.d.ts
index e18361dec4..c0db55d100 100644
--- a/jasmine/index.d.ts
+++ b/jasmine/index.d.ts
@@ -1,4 +1,4 @@
-// Type definitions for Jasmine 2.5
+// Type definitions for Jasmine 2.5.2
// Project: http://jasmine.github.io/
// Definitions by: Boris Yankov , Theodore Brown , David Pärsson
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -38,6 +38,8 @@ interface DoneFn extends Function {
declare function spyOn(object: T, method: keyof T): jasmine.Spy;
+declare function spyOnProperty(object: T, property: keyof T, accessType: string): jasmine.Spy;
+
declare function runs(asyncMethod: Function): void;
declare function waitsFor(latchMethod: () => boolean, failureMessage?: string, timeout?: number): void;
declare function waits(timeout?: number): void;
@@ -455,6 +457,7 @@ declare namespace jasmine {
addBeforesAndAftersToQueue(): void;
explodes(): void;
spyOn(obj: any, methodName: string, ignoreMethodDoesntExist: boolean): Spy;
+ spyOnProperty(object: any, property: string, accessType: string): Spy;
removeAllSpies(): void;
throwOnExpectationFailure: boolean;
}