File size: 333 Bytes
fa79853
 
 
 
 
 
 
 
de10f77
fa79853
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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' | 'retired';

	photos: Picture[];
}