mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-12-04 18:21:12 +00:00
Use internal tagging.
This commit is contained in:
parent
54e4b0a707
commit
355af97538
1 changed files with 3 additions and 3 deletions
|
@ -4,6 +4,6 @@ import type { PostReportView } from "./PostReportView";
|
|||
import type { PrivateMessageReportView } from "./PrivateMessageReportView";
|
||||
|
||||
export type ReportCombinedView =
|
||||
| { Post: PostReportView }
|
||||
| { Comment: CommentReportView }
|
||||
| { PrivateMessage: PrivateMessageReportView };
|
||||
| ({ type_: "Post" } & PostReportView)
|
||||
| ({ type_: "Comment" } & CommentReportView)
|
||||
| ({ type_: "PrivateMessage" } & PrivateMessageReportView);
|
||||
|
|
Loading…
Reference in a new issue