Sharkey/packages/megalodon/src/entities/report.ts

10 lines
157 B
TypeScript
Raw Normal View History

2023-09-23 19:49:47 +03:00
namespace Entity {
export type Report = {
id: string;
action_taken: string;
comment: string;
account_id: string;
status_ids: Array<string>;
};
}