github.com/thanos-io/thanos@v0.32.5/pkg/ui/react-app/src/thanos/pages/stores/store.ts (about) 1 export type Labels = Record<string, string>; 2 3 export interface Store { 4 name: string; 5 minTime: number; 6 maxTime: number; 7 lastError: string | null; 8 lastCheck: string; 9 labelSets: Labels[]; 10 }