pull/3/head
Dan Gowans 2025-03-25 12:22:21 -04:00
parent 5f4aa595f2
commit 7ccc56d5e0
1 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
export type ReportParameters = Record<string, string | number>; export type ReportParameters = Record<string, number | string>;
export default function getReportData(reportName: string, reportParameters?: ReportParameters): Promise<unknown[] | undefined>; export default function getReportData(reportName: string, reportParameters?: ReportParameters): Promise<undefined | unknown[]>;