mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-03 00:25:57 +09:00
6 lines
219 B
TypeScript
6 lines
219 B
TypeScript
import { INote } from '../models/note';
|
|
|
|
export default function(note: INote): boolean {
|
|
return note.renoteId != null && (note.text != null || note.poll != null || (note.fileIds != null && note.fileIds.length > 0));
|
|
}
|