mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-17 23:47:38 -07: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));
|
||
|
}
|