mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-03-16 15:31:05 +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));
|
||
|
}
|