Work towards removing useUsers.

This commit is contained in:
Paul
2021-07-29 15:11:21 +01:00
parent cf3930b094
commit 4dffaad6c1
25 changed files with 580 additions and 501 deletions

View File

@@ -18,7 +18,7 @@ function toNullable<T>(data?: T) {
return typeof data === "undefined" ? null : data;
}
class User {
export class User {
_id: string;
username: string;