Improving user management and auto-refreshing user firms

This commit is contained in:
2025-04-10 01:31:37 +02:00
parent bc059de65b
commit f1fe81a146
13 changed files with 131 additions and 67 deletions

View File

@@ -0,0 +1,13 @@
export type IFirm = {
instance: string,
name: string
}
type User = {
id: number,
email: string,
firms: [IFirm],
};
export type IUser = User | null;