mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 23:36:44 -06:00
5 lines
228 B
TypeScript
5 lines
228 B
TypeScript
import type { 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));
|
|
}
|