Minor refactoring of #16127

This commit is contained in:
Torkel Ödegaard
2019-03-22 12:51:12 +01:00
parent c7c0ba5a5a
commit d5a56b0bed
6 changed files with 26 additions and 25 deletions

View File

@@ -76,3 +76,17 @@ export interface TableData {
rows: any[][];
tags?: Tags;
}
export interface AnnotationEvent {
annotation?: any;
dashboardId?: number;
panelId?: number;
userId?: number;
time?: number;
timeEnd?: number;
isRegion?: boolean;
title?: string;
text?: string;
type?: string;
tags?: string;
}