mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Added PubSubjs to the list
Quick and simple definition for PubSubjs
This commit is contained in:
Vendored
+25
@@ -0,0 +1,25 @@
|
||||
module PubSubJS {
|
||||
interface Base extends Publish, Subscribe, Unsubscribe {
|
||||
version: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
interface Publish{
|
||||
publish(message: any, data: any): bool;
|
||||
|
||||
publish(message:any, data:any, sync:bool, immediateExceptions:Function): bool;
|
||||
|
||||
publishSync(message: any, data: any): bool;
|
||||
}
|
||||
|
||||
interface Subscribe{
|
||||
subscribe(message: any, func: Function): any;
|
||||
}
|
||||
|
||||
|
||||
interface Unsubscribe{
|
||||
unsubscribe(tokenOrFunction: any): any;
|
||||
}
|
||||
}
|
||||
|
||||
declare var PubSub: PubSubJS.Base;
|
||||
Reference in New Issue
Block a user