Skip to content

Commit 19706eb

Browse files
committed
refactor
1 parent 5744bbc commit 19706eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ declare module 'errsole-sqlite' {
6363
updatePassword(email: string, currentPassword: string, newPassword: string): Promise<{ item: User }>;
6464
deleteUser(id: number): Promise<{}>;
6565

66-
getHostnames(): Promise<{ items: string[] }>;
6766
postLogs(logEntries: Log[]): Promise<{}>;
6867
getLogs(filters?: LogFilter): Promise<{ items: Log[] }>;
6968
searchLogs(searchTerms: string[], filters?: LogFilter): Promise<{ items: Log[], filters: LogFilter[] }>;
7069
deleteAllLogs(): Promise<{}>;
71-
7270
getMeta(id: number): Promise<{ item: { id: number; meta: string } }>;
7371

7472
insertNotificationItem(notification: Notification): Promise<{ previousNotificationItem: Notification | null, todayNotificationCount: number }>;
73+
74+
getHostnames(): Promise<{ items: string[] }>;
7575
}
7676

7777
export default ErrsoleSQLite;

0 commit comments

Comments
 (0)