Every connection now has distince SubmitFunction for adding/removing connections

This commit is contained in:
Eclypsed
2024-02-12 00:39:15 -05:00
parent cb03d2661b
commit a8241c6e19
5 changed files with 83 additions and 64 deletions

2
src/app.d.ts vendored
View File

@@ -13,7 +13,7 @@ declare global {
// General Interface Desing tips:
// Use possibly undefined `?:` for when a property is optional, meaning it could be there, or it could be not applicable
// Use possibly null `| nulll` for when the property is expected to be there but could possbily be explicitly empty
// Use possibly null `| null` for when the property is expected to be there but could possbily be explicitly empty
interface User {
id: string