Rene Vergara
172ebb0171
Implemented adding the component to the viewer and the search in database. Fixed bug in search of item list
13 lines
177 B
TypeScript
13 lines
177 B
TypeScript
export interface Order {
|
|
_id?: string,
|
|
address: string,
|
|
session: string,
|
|
timestamp: string,
|
|
closed: boolean,
|
|
lines: [{
|
|
qty: number,
|
|
item: string,
|
|
cost: number
|
|
}]
|
|
}
|