UNPKG

ocpi-types

Version:

TypeScript DTOs and enums for OCPI 2.2.1 specification.

10 lines (9 loc) 225 B
import { ImageCategory } from '../enums/image-category.enum'; export declare class ImageDto { url: string; thumbnail?: string; category: ImageCategory; type: string; width?: number; height?: number; }