UNPKG
mamg-product-card
Version:
latest (1.0.0-rc)
1.0.0-rc
0.0.1
Este es un paquete de pruebas de despliegue en NPM
morilla777/mamg-product-card
mamg-product-card
/
dist
/
interfaces
/
UseProductArgs.d.ts
10 lines
(9 loc)
•
300 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Product
}
from
"./Product"
;
import
{
OnChangeArgs
}
from
"./OnChangeArgs"
;
import
{
InitialValues
}
from
"./InitialValues"
;
export
interface
UseProductArgs
{
product
:
Product
;
onChange
?:
(
args
:
OnChangeArgs
) =>
void
;
value
?:
number
;
initialValues
?:
InitialValues
; }