Creating Plot Twists
    Preparing search index...

    Type Alias Focus

    Represents a focus within Plot.

    A focus is similar to a project or area-of-life. All Activity is in a Focus. Focuses are flat — they have no parent and no children. Threads not matched to any focus live in the Inbox.

    type Focus = {
        id: Uuid;
        title: string;
        archived: boolean;
        key: string | null;
        color: ThemeColor | null;
        icon: string | null;
    }
    Index

    Properties

    id: Uuid

    Unique identifier for the focus

    title: string

    Human-readable title for the focus

    archived: boolean

    Whether this focus has been archived

    key: string | null

    Optional key for referencing this focus. Keys are unique per user.

    color: ThemeColor | null

    Optional theme color for the focus (0-7). Defaults to 7 (Resolution) when not set.

    icon: string | null

    Optional icon for the focus (a curated icon key). Defaults to the focus icon when not set.