1
0

lint and type fixes

This commit is contained in:
Hazelnoot
2025-04-01 20:47:04 -04:00
parent 54071efaea
commit 6ac37b4d6c
84 changed files with 188 additions and 374 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ type MinimumUser = {
uri: MiUser['uri'];
};
export type MiScheduleNoteType={
export type MiScheduleNoteType = {
visibility: 'public' | 'home' | 'followers' | 'specified';
visibleUsers: MinimumUser[];
channel?: MiChannel['id'];
@@ -37,7 +37,7 @@ export type MiScheduleNoteType={
apMentions?: MinimumUser[] | null;
apHashtags?: string[] | null;
apEmojis?: string[] | null;
}
};
@Entity('note_schedule')
export class MiNoteSchedule {