meemup-library 1.2.72 → 1.2.73
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/interfaces/pos/IPointOfSaleCheckingTimeBody.d.ts +6 -0
- package/dist/interfaces/pos/IPointOfSaleCheckingTimeBody.js +5 -0
- package/dist/interfaces/pos/IPointOfSaleCheckingTimeData.d.ts +9 -0
- package/dist/interfaces/pos/IPointOfSaleCheckingTimeData.js +7 -0
- package/dist/interfaces/pos/IPointOfSaleCheckingTimeDataSummary.d.ts +6 -0
- package/dist/interfaces/pos/IPointOfSaleCheckingTimeDataSummary.js +5 -0
- package/dist/interfaces/pos/IPointOfSaleCheckingTimeDataTimeRecord.d.ts +10 -0
- package/dist/interfaces/pos/IPointOfSaleCheckingTimeDataTimeRecord.js +1 -0
- package/dist/interfaces/pos/IPointOfSaleShiftSummary.d.ts +9 -0
- package/dist/interfaces/pos/IPointOfSaleShiftSummary.js +7 -0
- package/dist/interfaces/pos/IPointOfSaleShiftSummaryTimeRecord.d.ts +9 -0
- package/dist/interfaces/pos/IPointOfSaleShiftSummaryTimeRecord.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import IPointOfSaleCheckingTimeDataSummary from "./IPointOfSaleCheckingTimeDataSummary";
|
|
2
|
+
import IPointOfSaleCheckingTimeDataTimeRecord from "./IPointOfSaleCheckingTimeDataTimeRecord";
|
|
3
|
+
export default interface IPointOfSaleCheckingTimeData {
|
|
4
|
+
firstName: string;
|
|
5
|
+
lastName: string;
|
|
6
|
+
timeRecords: IPointOfSaleCheckingTimeDataTimeRecord[];
|
|
7
|
+
summary: IPointOfSaleCheckingTimeDataSummary;
|
|
8
|
+
}
|
|
9
|
+
export declare const initPointOfSaleCheckingTimeData: IPointOfSaleCheckingTimeData;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import IPointOfSaleCheckingTimeDataSummary from "./IPointOfSaleCheckingTimeDataSummary";
|
|
2
|
+
import IPointOfSaleShiftSummaryTimeRecord from "./IPointOfSaleShiftSummaryTimeRecord";
|
|
3
|
+
export default interface IPointOfSaleShiftSummary {
|
|
4
|
+
firstName: string;
|
|
5
|
+
lastName: string;
|
|
6
|
+
timeRecords: IPointOfSaleShiftSummaryTimeRecord[];
|
|
7
|
+
summary: IPointOfSaleCheckingTimeDataSummary;
|
|
8
|
+
}
|
|
9
|
+
export declare const initPointOfSaleShiftSummary: IPointOfSaleShiftSummary;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|