@bookmypuja-tech/bmp-pdf 0.4.4 → 0.4.5
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 +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -216,14 +216,17 @@ interface IInvoiceData {
|
|
|
216
216
|
morning: {
|
|
217
217
|
name: string;
|
|
218
218
|
timings: string;
|
|
219
|
+
days: string[];
|
|
219
220
|
}[];
|
|
220
221
|
afternoon: {
|
|
221
222
|
name: string;
|
|
222
223
|
timings: string;
|
|
224
|
+
days: string[];
|
|
223
225
|
}[];
|
|
224
226
|
evening: {
|
|
225
227
|
name: string;
|
|
226
228
|
timings: string;
|
|
229
|
+
days: string[];
|
|
227
230
|
}[];
|
|
228
231
|
};
|
|
229
232
|
}
|
package/package.json
CHANGED