Update readme and metadata in several definition files

This commit is contained in:
Boris Yankov
2013-01-20 07:08:19 +02:00
parent 33156fee7c
commit b785ffc254
6 changed files with 206 additions and 182 deletions

View File

@@ -1,3 +1,9 @@
// Type definitions for knockout-postbox
// Project: https://github.com/rniemeyer/knockout-postbox
// Definitions by: Judah Gabriel <https://github.com/JudahGabriel>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
interface KnockoutPostBox {
subscribe: (topic: string, handler: (value) => void, target?: any) => KnockoutObservableAny;
publish: (topic: string, value?: any) => KnockoutObservableAny;