node-vehicle-logos
Version:
A collection of vehicle manufacturer logos
14 lines (13 loc) • 478 B
TypeScript
/** The type of comparison to use when finding makes. */
export type MatchType = "full" | "start" | "end" | "contains";
/** Represents a vehicle make record. */
export interface VehicleMake {
/** The name of the make. */
name: string;
/** The optional list of alt names. */
altNames?: string[];
/** The name of the logo asset for the make. */
logo: string;
/** The name of the short logo asset for the make. */
shortLogo?: string;
}