Merge pull request #4274 from ffMathy/patch-1

added missing reset method
This commit is contained in:
Masahiro Wakame
2015-05-06 23:59:07 +09:00
+1
View File
@@ -10,6 +10,7 @@ interface KnockoutPostBox {
publish<T>(topic: string, value?: T): void;
defaultComparer<T>(newValue: T, oldValue: T): boolean;
serializer: (object: any) => string;
reset(): void;
}
interface KnockoutObservable<T> {