summaryrefslogtreecommitdiff
path: root/packages/backend/src/misc/is-quote.ts
blob: 248b25a0bf5d512c5e853d082aa4036d54df6812 (plain)
1
2
3
4
5
import type { Note } from '@/models/entities/Note.js';

export default function(note: Note): boolean {
	return note.renoteId != null && (note.text != null || note.hasPoll || (note.fileIds != null && note.fileIds.length > 0));
}