Interface ImportResult

Import result with statistics.

interface ImportResult {
    success: boolean;
    tablesImported: number;
    rowsImported: number;
    errors?: string[];
    duration: number;
}

Hierarchy (view full)

Properties

success: boolean
tablesImported: number
rowsImported: number
errors?: string[]
duration: number