Workspaces refactor #86

Merged
norm merged 189 commits from refactor/workspaces into main 2022-08-28 14:46:45 +00:00
Showing only changes of commit d549879cd4 - Show all commits

View file

@ -18,6 +18,14 @@ export type UserLite = {
name: string; name: string;
url: string; url: string;
}[]; }[];
instance?: {
name: Instance['name'],
softwareName: Instance['softwareName'],
softwareVersion: Instance['softwareVersion'],
iconUrl: Instance['iconUrl'],
faviconUrl: Instance['faviconUrl'],
themeColor: Instance['themeColor'],
};
}; };
export type UserDetailed = UserLite & { export type UserDetailed = UserLite & {