Interface HistoryRow<T>

interface HistoryRow<T extends keyof ReportTypesMap> {
    author: { cn: string; id: string; sn: string };
    expanded?: boolean;
    organization: { id: string };
    report: ReportTypesMap[T];
    timestamp: string;
    type: T;
}

Type Parameters

Properties

author: { cn: string; id: string; sn: string }
expanded?: boolean
organization: { id: string }
report: ReportTypesMap[T]
timestamp: string
type: T