mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-02-19 01:23:09 +02:00
6 lines
221 B
TypeScript
6 lines
221 B
TypeScript
![]() |
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));
|
||
|
}
|