@harbortouch/skytab-analytics-report-utils 0.5.2 → 0.6.0
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.cjs +1141 -1127
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1140 -1127
- package/dist/report.d.ts +2 -0
- package/package.json +1 -1
package/dist/report.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { ReportConfig } from './types';
|
|
1
2
|
export declare const Report: {
|
|
2
3
|
readonly TICKET_LIVE: "ticket-live";
|
|
3
4
|
readonly TICKET_ANALYTICS: "ticket-analytics";
|
|
@@ -10,3 +11,4 @@ export declare const Report: {
|
|
|
10
11
|
readonly SALES_BY_ITEM: "sales-by-item";
|
|
11
12
|
};
|
|
12
13
|
export type ReportType = (typeof Report)[keyof typeof Report];
|
|
14
|
+
export declare const getReportConfig: (reportType: ReportType) => ReportConfig<string> | null;
|