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;
}
Type declaration
createdAt: string | string | unknown
type: "CREATED"
Type declaration
snoozedAt: string | string | unknown
snoozedUntil: string | string | unknown
type: "SNOOZED"
Type declaration
snoozedAt: string | string | unknown
type: "UNSNOOZED"
Type declaration
newReplyAt: string | string | unknown
type: "NEW_REPLY"
Type declaration
linearIssueId: string
type: "LINK_LINEAR_UPDATED"
updatedAt: string | string | unknown