(event: string, tOrD: any, data?: ArbitraryObject)
| 57 | protected notify(event: string, data: ArbitraryObject): void; |
| 58 | protected notify(event: string, text: string, data: ArbitraryObject): void; |
| 59 | protected notify(event: string, tOrD: any, data?: ArbitraryObject): void { |
| 60 | return data ? |
| 61 | notify(event, this.descriptors, this, tOrD, data) : |
| 62 | notify(event, this.descriptors, this, tOrD); |
| 63 | } |
| 64 | |
| 65 | /** immediately dispatches a notification event */ |
| 66 | protected notifyNow(event: string, text: string): void; |