10 lines
159 B
TypeScript
10 lines
159 B
TypeScript
/// <reference path="note.ts" />
|
|
|
|
namespace MisskeyEntity {
|
|
export type Favorite = {
|
|
id: string;
|
|
createdAt: string;
|
|
noteId: string;
|
|
note: Note;
|
|
};
|
|
}
|