Still figuring out how typescript works with rest APIs

This commit is contained in:
Eclypsed
2024-01-31 12:19:57 -05:00
parent b7daf9c27c
commit dda5b7f6d2
6 changed files with 94 additions and 107 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ type UserQueryParams = {
includePassword?: boolean
}
interface DBServiceData {
export interface DBServiceData {
id: string
type: ServiceType
serviceUserId: string
@@ -29,7 +29,7 @@ interface DBServiceRow {
url: string
}
interface DBConnectionData {
export interface DBConnectionData {
id: string
user: User
service: DBServiceData