coyotte508's picture
coyotte508 HF staff
🔥 Remove "retired" state
67c107f
raw
history blame
No virus
337 Bytes
import type { Picture } from './Picture';
import type { Timestamps } from './Timestamps';
export interface Product extends Timestamps {
_id: string;
name: string;
description: string;
price: number;
kind: 'armchair' | 'cushion' | 'chair' | 'couch' | 'tufting';
state: 'draft' | 'published';
stock: number;
photos: Picture[];
}