mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-04 05:46:44 -06: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;
|
||
|
}
|