Forked from an inaccessible project.
-
Scott Berg authoredScott Berg authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
audit.ts 724 B
export interface Requirement {
requirementName: string;
status: { status: string; description: string };
requirementLinesGroupedByContentType: {
contentType: string; // I think this can be string literals
lines: string[];
};
}
export interface Audit {
header: {
catalogYear: string;
catalogYearLabel: string;
clientDefinedMessage: string;
degreeProgram: string;
degreeProgramLabel: string;
graduationDate: string;
graduationDateLabel: string;
name: string;
preparedDate: string;
studentId: string;
title1: string;
title2: string;
};
topText: string[];
bottomText: string[];
completeText: string;
errorText: any[];
requirements: Requirement[];
}