10 lines
641 B
TypeScript
10 lines
641 B
TypeScript
export declare const deathAgePeriods: readonly ["Years", "Months", "Days", "Stillborn"];
|
|
export declare const purchaserRelationships: readonly ["Spouse", "Husband", "Wife", "Child", "Parent", "Sibling", "Friend", "Self"];
|
|
export declare const directionsOfArrival: readonly ["N", "NE", "E", "SE", "S", "SW", "W", "NW"];
|
|
declare const _default: {
|
|
deathAgePeriods: readonly ["Years", "Months", "Days", "Stillborn"];
|
|
directionsOfArrival: readonly ["N", "NE", "E", "SE", "S", "SW", "W", "NW"];
|
|
purchaserRelationships: readonly ["Spouse", "Husband", "Wife", "Child", "Parent", "Sibling", "Friend", "Self"];
|
|
};
|
|
export default _default;
|