Sharkey/packages/megalodon/src/entities/report.ts
2023-09-23 18:49:47 +02:00

9 lines
157 B
TypeScript

namespace Entity {
export type Report = {
id: string;
action_taken: string;
comment: string;
account_id: string;
status_ids: Array<string>;
};
}