blob: 420f03a489d5c5c53401087378ecff96f64c5dad (
plain)
1
2
3
4
5
|
import { INote } from '../models/note';
export default function(note: INote): boolean {
return note.renoteId != null && (note.text != null || note.poll != null || (note.mediaIds != null && note.mediaIds.length > 0));
}
|