src/lib/interface/event.interface.ts
Triggerable and Subscribable events
Properties |
data |
data:
|
Type : any
|
Optional |
data to be passed along with the event |
type |
type:
|
Type : string
|
type |
export interface Event {
/**
* type
*/
type: string;
/**
* data to be passed along with the event
*/
data?: any;
}