UNPKG

456 BTypeScriptView Raw
1/**
2 * Represents an implementation of the IZPubSubEventObject.
3 *
4 * @this {ZPubSubEventObject}
5 */
6export declare class ZPubSubEventObject {
7 owner: any;
8 callback: () => any;
9 /**
10 * Initializes a new instance of this object.
11 *
12 * @param {Object} owner The owner of the event.
13 * @param {Function} callback The callback for when the event is invoked.
14 */
15 constructor(owner: any, callback: () => any);
16}