import type { PostId } from "./PostId"; /** * Save / bookmark a post. */ export type SavePost = { post_id: PostId; save: boolean; };