github.com/zppinho/prow@v0.0.0-20240510014325-1738badeb017/cmd/deck/static/api/tide-history.ts (about) 1 import {Pull} from "../api/prow"; 2 3 export interface HistoryData { 4 History: {[key: string]: Record[]}; 5 } 6 7 export interface Record { 8 time: string; 9 action: string; 10 baseSHA?: string; 11 target?: Pull[]; 12 err?: string; 13 }