lemmy-js-client/src/types/ModLockPostView.ts

13 lines
409 B
TypeScript
Raw Normal View History

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Community } from "./Community";
import type { ModLockPost } from "./ModLockPost";
import type { Person } from "./Person";
import type { Post } from "./Post";
export interface ModLockPostView {
mod_lock_post: ModLockPost;
moderator?: Person;
post: Post;
community: Community;
}