Represents import statistics for Kenmei data.

export interface ImportStats {
total: number;
timestamp: string;
statusCounts: Record<string, number>;
}
interface ImportStats {
    total: number;
    timestamp: string;
    statusCounts: Record<string, number>;
}

Properties

total: number
timestamp: string
statusCounts: Record<string, number>