mirror of
https://github.com/timberjoegithub/grafana-statusmap.git
synced 2026-07-21 23:42:03 +00:00
5 lines
77 B
TypeScript
5 lines
77 B
TypeScript
export interface AppEvent<T> {
|
|
readonly name: string;
|
|
payload?: T;
|
|
}
|