fix: issue parent type (#5219)
This commit is contained in:
parent
4d978c1a8c
commit
b4f2176ffa
3 changed files with 5 additions and 4 deletions
2
packages/types/src/issues/issue.d.ts
vendored
2
packages/types/src/issues/issue.d.ts
vendored
|
|
@ -42,7 +42,7 @@ export type TBaseIssue = {
|
|||
export type TIssue = TBaseIssue & {
|
||||
description_html?: string;
|
||||
is_subscribed?: boolean;
|
||||
parent?: partial<TIssue>;
|
||||
parent?: Partial<TBaseIssue>;
|
||||
issue_reactions?: TIssueReaction[];
|
||||
issue_attachment?: TIssueAttachment[];
|
||||
issue_link?: TIssueLink[];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue