export { isCommasOption, CommasOptionItem } from "./utils"; export type * from "./types"; export * as optsByEntity from "./opts"; import * as opts from "./opts"; import { z } from "zod"; import { QBOReportEntityType } from "../lib/types"; type Opts = typeof opts; type OptsByReportType = { [K in keyof Opts]: z.infer; }; export type ReportQuery = OptsByReportType[T];