File tree Expand file tree Collapse file tree 5 files changed +33
-2
lines changed Expand file tree Collapse file tree 5 files changed +33
-2
lines changed Original file line number Diff line number Diff line change 1
1
/* eslint-disable @typescript-eslint/indent */
2
2
interface ICategoryProps {
3
- setCategory : ( val : string ) => void
3
+ formik : any
4
4
}
5
5
6
6
export default ICategoryProps ;
Original file line number Diff line number Diff line change
1
+ /* eslint-disable @typescript-eslint/indent */
2
+ interface IFormik {
3
+ title : string ,
4
+ description : string ,
5
+ type : string ,
6
+ gallery : string [ ] ,
7
+ category_id : string ,
8
+ }
9
+
10
+ export default IFormik ;
Original file line number Diff line number Diff line change
1
+ /* eslint-disable @typescript-eslint/indent */
2
+ interface IImages {
3
+ img1 : {
4
+ url : string ,
5
+ isLoading : boolean ,
6
+ } ,
7
+ img2 : {
8
+ url : string ,
9
+ isLoading : boolean ,
10
+ } ,
11
+ img3 : {
12
+ url : string ,
13
+ isLoading : boolean ,
14
+ } ,
15
+ }
16
+
17
+ export default IImages ;
Original file line number Diff line number Diff line change 1
1
/* eslint-disable @typescript-eslint/indent */
2
2
interface ITypeRadioProps {
3
- setType : ( val : string ) => void
3
+ formik : any
4
4
}
5
5
6
6
export default ITypeRadioProps ;
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ import IProductsCategoryProps from './ProductsCategory';
29
29
import IProductsFilterProps from './IProductsFilterProps' ;
30
30
import IChatBoxProps from './IChatBoxProps' ;
31
31
import IProfilePopupProps from './IProfilePopupProps' ;
32
+ import IFormik from './IFormik' ;
33
+ import IImages from './IImages' ;
32
34
33
35
export {
34
36
IProduct ,
@@ -64,4 +66,6 @@ export {
64
66
IProductsFilterProps ,
65
67
IChatBoxProps ,
66
68
IProfilePopupProps ,
69
+ IFormik ,
70
+ IImages ,
67
71
} ;
You can’t perform that action at this time.
0 commit comments