UNPKG

typescript-closure-tools

Version:

Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files

31 lines (22 loc) 798 B
// Type definitions for PubSubJS 1.3.5 // Project: https://github.com/mroderick/PubSubJS // Definitions by: Boris Yankov <https://github.com/borisyankov/> // Definitions: https://github.com/borisyankov/DefinitelyTyped declare module PubSubJS { interface Base extends Publish, Subscribe, Unsubscribe { version: string; name: string; } interface Publish{ publish(message: any, data: any): boolean; publish(message:any, data:any, sync:boolean, immediateExceptions:Function): boolean; publishSync(message: any, data: any): boolean; } interface Subscribe{ subscribe(message: any, func: Function): any; } interface Unsubscribe{ unsubscribe(tokenOrFunction: any): any; } } declare var PubSub: PubSubJS.Base;