@bookmypuja-tech/bmp-pdf 0.4.34 → 0.4.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -526,12 +526,12 @@ interface ShareReportProps {
|
|
|
526
526
|
reportTiming?: IReportTimings;
|
|
527
527
|
data: {
|
|
528
528
|
pujaName: string;
|
|
529
|
-
price: string;
|
|
530
|
-
count: string;
|
|
531
|
-
total: string;
|
|
529
|
+
price: string | number;
|
|
530
|
+
count: string | number;
|
|
531
|
+
total: string | number;
|
|
532
532
|
shares: {
|
|
533
533
|
key: string;
|
|
534
|
-
value: string;
|
|
534
|
+
value: string | number;
|
|
535
535
|
}[];
|
|
536
536
|
}[];
|
|
537
537
|
}
|
package/package.json
CHANGED