calckey/src/misc/is-quote.ts

6 lines
219 B
TypeScript
Raw Normal View History

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