torque-pro-assistant - v1.0.0
    Preparing search index...

    Interface Vehicle

    Vehicle metadata captured at import time. VIN is optional in the CSV but the design uses it as the dedup key for "the same vehicle"; if the CSV doesn't include one, the import flow asks the user.

    interface Vehicle {
        make: string;
        model: string;
        vin: string;
        year: number;
    }
    Index

    Properties

    Properties

    make: string
    model: string
    vin: string
    year: number