wip: trpc

This commit is contained in:
Andras Bacsai
2023-01-13 14:54:21 +01:00
parent 568ab24fd9
commit 97313e4180
18 changed files with 1951 additions and 86 deletions

View File

@@ -42,6 +42,7 @@ interface AppSession {
gitlab: string | null;
};
pendingInvitations: Array<any>;
isARM: boolean
}
export const appSession: Writable<AppSession> = writable({
@@ -61,7 +62,8 @@ export const appSession: Writable<AppSession> = writable({
github: null,
gitlab: null
},
pendingInvitations: []
pendingInvitations: [],
isARM: false
});
interface AddToast {