sunrise-cms/data/dataLists.ts

22 lines
298 B
TypeScript

export const deathAgePeriods = [
'Years',
'Months',
'Days',
'Stillborn'
] as const
export const purchaserRelationships = [
'Spouse',
'Husband',
'Wife',
'Child',
'Parent',
'Sibling',
'Friend',
'Self'
] as const
export default {
deathAgePeriods,
purchaserRelationships
}