mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-15 05:44:51 +00:00
10 lines
164 B
TypeScript
10 lines
164 B
TypeScript
/// <reference path="note.ts" />
|
|
|
|
namespace MisskeyEntity {
|
|
export type Favorite = {
|
|
id: string
|
|
createdAt: string
|
|
noteId: string
|
|
note: Note
|
|
}
|
|
}
|