northants-design-system
Version:
Design system for West & North Northamptonshire Councils, two unitary councils encompassing Wellingborough, Corby, Daventry, East Northants, Kettering, Northampton, Northamptonshire County and South Northants.
30 lines (29 loc) • 663 B
TypeScript
export interface InquestScheduleProps {
/**
* An array of Case Appointments
*/
caseAppointments: CaseAppointmentProps[];
/**
* The table title or caption
*/
title: string;
/**
* Was there an error fetching results
*/
error?: boolean;
}
export interface CaseAppointmentProps {
fullName: string;
age: number;
placeOfDeath?: string | null;
dateTimeOfDeath: string;
coroner: string;
courtroomFullAddress: string;
appointmentType: string;
startDateTime: string;
}
export declare enum CaseAppointmentType {
Hearing = "hearing",
Opening = "opening",
Writing = "writing"
}