mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 15:36:44 -06:00
5 lines
220 B
TypeScript
5 lines
220 B
TypeScript
import { Note } from '@/models/entities/note';
|
|
|
|
export default function(note: Note): boolean {
|
|
return note.renoteId != null && (note.text != null || note.hasPoll || (note.fileIds != null && note.fileIds.length > 0));
|
|
}
|