mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
40 lines
961 B
TypeScript
40 lines
961 B
TypeScript
// Type definitions for PubSubJS 1.5.2
|
|
// Project: https://github.com/mroderick/PubSubJS
|
|
// Definitions by: Boris Yankov <https://github.com/borisyankov/>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare namespace PubSubJS {
|
|
interface Base extends Publish, Subscribe, Unsubscribe, ClearAllSubscriptions {
|
|
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;
|
|
}
|
|
|
|
|
|
interface ClearAllSubscriptions{
|
|
clearAllSubscriptions(): any;
|
|
}
|
|
}
|
|
|
|
declare var PubSub: PubSubJS.Base;
|
|
|
|
declare module "pubsub-js" {
|
|
export = PubSub;
|
|
}
|