monkeeShark/packages/megalodon/src/misskey/entities/favorite.ts

11 lines
159 B
TypeScript
Raw Normal View History

2023-09-23 16:49:47 +00:00
/// <reference path="note.ts" />
namespace MisskeyEntity {
export type Favorite = {
id: string;
createdAt: string;
noteId: string;
note: Note;
};
}