import type { ModlogId } from "./ModlogId"; import type { ModlogKind } from "./ModlogKind"; export type Modlog = { id: ModlogId; kind: ModlogKind; is_revert: boolean; reason?: string; expires_at?: string; published_at: string; bulk_action_parent_id?: ModlogId; };