Migration/AlertList: Migrates AlertList from AngularJS to React (#31872)

* Migration/AlertList: Migrates AlertList from AngularJS to React
This commit is contained in:
kay delaney
2021-03-11 14:53:13 +00:00
committed by GitHub
parent 93ead2a50c
commit 48d2dff987
10 changed files with 621 additions and 319 deletions

View File

@@ -174,3 +174,24 @@ export interface AlertDefinitionUiState {
rightPaneSize: number;
topPaneSize: number;
}
export interface AnnotationItemDTO {
id: number;
alertId: number;
alertName: string;
dashboardId: number;
panelId: number;
userId: number;
newState: string;
prevState: string;
created: number;
updated: number;
time: number;
timeEnd: number;
text: string;
tags: string[];
login: string;
email: string;
avatarUrl: string;
data: any;
}