cityssm/node-faster-report-parser

View on GitHub
reportTypes.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type FasterReportVersion = 'report' | 'script'

export interface FasterReportResults {
  parameters: Record<string, string>
  version: Record<FasterReportVersion, string>
}