Type alias ThreadStatusDetail
ThreadStatusDetail: {
createdAt: string | string | unknown;
type: "CREATED";
} | {
snoozedAt: string | string | unknown;
snoozedUntil: string | string | unknown;
type: "SNOOZED";
} | {
snoozedAt: string | string | unknown;
type: "UNSNOOZED";
} | {
newReplyAt: string | string | unknown;
type: "NEW_REPLY";
} | {
linearIssueId: string;
type: "LINK_LINEAR_UPDATED";
updatedAt: string | string | unknown;
}