Interface Context

Represents the tree around a given status. Used for reconstructing threads of statuses.

interface Context {
    ancestors: Status[];
    descendants: Status[];
}

Properties

ancestors: Status[]

Parents in the thread.

descendants: Status[]

Children in the thread.