magnetar/fe_calckey/frontend/client/src/filters/note.ts

9 lines
223 B
TypeScript

import * as Misskey from "calckey-js";
import { packed } from "magnetar-common";
export const notePage = (note: {
id: packed.PackNoteBase["id"] | Misskey.entities.Note["id"];
}) => {
return `/notes/${note.id}`;
};