summaryrefslogtreecommitdiff
path: root/packages/backend/src/misc/is-quote.ts
blob: 779f548b031793b7d6af7ba81867ca1ac7ed3b25 (plain)
1
2
3
4
5
import { 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));
}