barkey/packages/megalodon/src/misskey/entities/favorite.ts
2023-09-25 01:49:57 +02:00

10 lines
164 B
TypeScript

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