FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "댓글 해시태그 객체"
interface CommentHashTag { /** 해시태그 ID. **/ id: string /** 최종 #해시태그 태그 텍스트(# 기호 포함). **/ tag: string /** 해시태그가 커스텀 URL과 연결되어 있으면 이 값이 정의됩니다. **/ url?: string /** 댓글을 업데이트할 때 댓글 본문에 존재하지 않더라도 해시태그를 유지할지 여부. 댓글 본문을 변경하지 않고 댓글에 태그를 달 때 유용합니다. **/ retain?: boolean }
Result