Added default comparer to KnockoutPostBox

This commit is contained in:
Judah Gabriel Himango
2012-12-28 10:20:23 -06:00
parent c6ba5a2416
commit 678665f98f
+1
View File
@@ -1,6 +1,7 @@
interface KnockoutPostBox {
subscribe: (topic: string, handler: (value) => void, target?: any) => KnockoutObservableAny;
publish: (topic: string, value?: any) => KnockoutObservableAny;
defaultComparer: (newValue: any, oldValue: any) => bool;
}
interface KnockoutObservableString {