Files
CrazeAnalytix/components/mkt/types.ts
T

18 lines
313 B
TypeScript
Raw Normal View History

export interface Product {
id: string;
asin: string;
sku: string;
name: string;
image: string;
category: string;
brand: string;
grossSales: number;
unitsSold: number;
ppcSpend: number;
deals: number;
promos: number;
chargebacks: number;
chargebacksPrevMonth: number;
cogs: number;
}