monkeeShark/packages/megalodon/src/misskey/entities/favorite.ts
2023-09-25 01:20:03 +02:00

10 lines
159 B
TypeScript

/// <reference path="note.ts" />
namespace MisskeyEntity {
export type Favorite = {
id: string;
createdAt: string;
noteId: string;
note: Note;
};
}