Removal of logChange method and explanation

logChange is an example of an extension, not part of the standard library. To add extensions, simply extend the interface outside of the definition file:

interface KnockoutExtenders {
    logChange(target: KnockoutObservableAny, option: string): KnockoutObservableAny;
}
This commit is contained in:
Steve Fenton
2013-03-16 09:31:04 +00:00
parent 96814e5e60
commit b7008627b5
-1
View File
@@ -242,7 +242,6 @@ interface KnockoutVirtualElements {
interface KnockoutExtenders {
throttle(target: any, timeout: number): KnockoutComputed;
notify(target: any, notifyWhen: string): any;
logChange(target: KnockoutObservableAny, option: string): KnockoutObservableAny;
}
interface KnockoutUtils {