UNPKG
shopperman
Version:
latest (0.0.0)
0.0.0
0.0.0-dev.56
0.0.0-dev.54
0.0.0-dev.49
0.0.0-dev.48
0.0.0-dev.47
0.0.0-dev.46
0.0.0-dev.41
0.0.0-dev.0
shopping cart ui for shopify stores
shopperman
/
dist
/
components
/
components-interfaces.d.ts
10 lines
(9 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Cart
}
from
"../stores/cart"
;
import
{
Product
}
from
"../stores/product"
;
export
interface
ProductDisplayProps
{
cart
:
Cart
;
product
:
Product
;
buttonText1
?:
string
;
buttonText2
?:
string
;
buttonTitle
?:
string
; }