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

11 lines
164 B
TypeScript
Raw Normal View History

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