mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-23 11:08:13 +09: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));
|
|
}
|