Type alias AppConfig

AppConfig: {
    apiKey: string;
    apiUrl: string;
    customCss: string;
    el: HTMLElement | null;
    elId: string;
    height: string;
    showArrows: boolean;
    showColorPicker: boolean;
    showThumbs: boolean;
    stylesheetUrl: string;
    vehicleAngles: VehicleAngle[];
    vehicleImageSize: VehicleImageSize;
    widthAdjustment: AppConfigWidthAdjustmentType;
}

Represents the configuration for the VVS Express application. This type defines the properties required to initialize and run the application.

Type declaration

  • apiKey: string
  • apiUrl: string
  • customCss: string
  • el: HTMLElement | null
  • elId: string
  • height: string
  • showArrows: boolean
  • showColorPicker: boolean
  • showThumbs: boolean
  • stylesheetUrl: string
  • vehicleAngles: VehicleAngle[]
  • vehicleImageSize: VehicleImageSize
  • widthAdjustment: AppConfigWidthAdjustmentType

Generated using TypeDoc