8 lines
106 B
TypeScript
8 lines
106 B
TypeScript
export interface Item {
|
|
_id?: any;
|
|
name: string;
|
|
description: string;
|
|
owner: string;
|
|
cost: number;
|
|
}
|