Creating Plot Twists
    Preparing search index...

    Type Alias Priority

    Represents a priority context within Plot.

    Priorities are similar to projects in other apps. All Activity is in a Priority. Priorities can be nested.

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

    Properties

    id: Uuid

    Unique identifier for the priority

    title: string

    Human-readable title for the priority

    archived: boolean

    Whether this priority has been archived

    key: string | null

    Optional key for referencing this priority. Keys are unique per priority tree (a user's personal priorities or the root of a shared priority).

    color: ThemeColor | null

    Optional theme color for the priority (0-7). If not set, inherits from parent or defaults to 7 (Resolution).