added missing reset method

This method has been implemented in the latest version of Postbox.
This commit is contained in:
Mathias Lykkegaard Lorenzen
2015-05-06 16:14:13 +02:00
parent 86ec64f5b4
commit 0372f92c67
+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> {