coyotte508's picture
coyotte508 HF staff
♻️ Migrate pictures to Object Storage
142fc6a
raw
history blame contribute delete
No virus
305 Bytes
import type { Timestamps } from './Timestamps';
export interface Picture extends Timestamps {
_id: string;
productId?: string;
name: string;
storage: {
original: ImageData;
formats: ImageData[];
};
}
export interface ImageData {
key: string;
width: number;
height: number;
size: number;
}