import type { AppInfo } from "./AppInfo"; import type { JoinedTeam } from "./JoinedTeam"; import type { UserPrivilege } from "./UserPrivilege"; export interface HttpGetUserJoinedTeamsResponse { teams: Record; teamsApps: Record>; userPrivileges: Record>; }