mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 09:57:38 +00:00
e9fc0bf5f7
Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>
13 lines
164 B
TypeScript
13 lines
164 B
TypeScript
interface Link {
|
|
brand: string;
|
|
model: string;
|
|
url: string;
|
|
oosLabels: string[];
|
|
}
|
|
|
|
export interface Store {
|
|
cartUrl: string;
|
|
links: Link[];
|
|
name: string;
|
|
}
|