import type { PostOrCommentOrPrivateMessage } from "./PostOrCommentOrPrivateMessage"; import type { UserSettingsBackup } from "./UserSettingsBackup"; /** * Your exported data. */ export type ExportDataResponse = { notifications: Array; content: Array; read_posts: Array; liked: Array; moderates: Array; settings: UserSettingsBackup; };