// GENERATED CODE! DO NOT MODIFY BY HAND! // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. import type { ThreadSectionAppearance } from "./ThreadSectionAppearance"; /** * An independently persisted, user-visible thread section. */ export type ThreadSection = { /** * Opaque UUIDv7 identity that remains stable when the section is renamed. */ id: string, /** * The current user-visible section name. */ name: string, /** * Optional appearance synchronized across clients. */ appearance: ThreadSectionAppearance | null, };