Files
streetmerchant/src/store/store.ts
T
Jef LeCompte e9fc0bf5f7 feat: use ts, update cd, update README (#12)
Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>
2020-09-18 04:27:23 -04:00

13 lines
164 B
TypeScript

interface Link {
brand: string;
model: string;
url: string;
oosLabels: string[];
}
export interface Store {
cartUrl: string;
links: Link[];
name: string;
}