export interface UpdateIssueCommentParams { /** Issue ID or Issue Key 課題のID または 課題キー */ issueIdOrKey: string | number; /** Comment ID コメントのID */ commentId: number; /** content コメントの本文 */ content: string; }