mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-08-05 16:49:17 +00:00
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
![]() |
/*
|
||
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
import * as Misskey from 'misskey-js';
|
||
|
|
||
|
export function getAppearNote(note: Misskey.entities.Note) {
|
||
|
return Misskey.note.isPureRenote(note) ? note.renote : note;
|
||
|
}
|