6 lines
115 B
TypeScript
6 lines
115 B
TypeScript
export interface DeathCause {
|
|
id: bigint;
|
|
encounter_id: bigint;
|
|
value: any; // json mapped to 'any' type
|
|
}
|
|
|