iceshrimp-legacy/packages/megalodon/src/misskey/entities/favorite.ts

11 lines
164 B
TypeScript

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