Skip to content

Commit

Permalink
update pccm types
Browse files Browse the repository at this point in the history
  • Loading branch information
gmrabian committed Oct 16, 2023
1 parent 74d92e0 commit 95fd88b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions services/app-api/utils/types/reports.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FormJson, ModalOverlayReportPageShape } from "./formFields";
import { Choice, FormJson, ModalOverlayReportPageShape } from "./formFields";
import { AnyObject, CompletionData, CustomHtmlElement, State } from "./other";

// REPORT STRUCTURE
Expand Down Expand Up @@ -151,7 +151,7 @@ export interface MCPARReportMetadata extends ReportMetadata {
reportingPeriodEndDate: number;
dueDate: number;
combinedData: boolean;
programIsPCCM: AnyObject[];
programIsPCCM: Choice[];
}

/**
Expand Down
4 changes: 2 additions & 2 deletions services/ui-src/src/types/reportContext.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// REPORT PROVIDER/CONTEXT

import { AnyObject, ReportJson } from "types";
import { AnyObject, Choice, ReportJson } from "types";

export interface ReportKeys {
reportType: string;
Expand Down Expand Up @@ -28,7 +28,7 @@ export interface ReportMetadataShape extends ReportKeys {
locked?: boolean;
fieldDataId: string;
copyFieldDataSourceId?: string;
programIsPCCM?: AnyObject[];
programIsPCCM?: Choice[];
}

export interface ReportShape extends ReportMetadataShape {
Expand Down

0 comments on commit 95fd88b

Please sign in to comment.