iceshrimp-legacy/src/misc/is-quote.ts

6 lines
219 B
TypeScript
Raw Normal View History

2018-07-20 22:35:43 +02:00
import { INote } from '../models/note';
export default function(note: INote): boolean {
2018-09-05 12:32:46 +02:00
return note.renoteId != null && (note.text != null || note.poll != null || (note.fileIds != null && note.fileIds.length > 0));
2018-07-20 22:35:43 +02:00
}