mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 21:13:08 +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));
|
||
|
}
|