import type { Identifier, ObjectPrettify, ObjectKeysToCamelCase } from "typeforge"; export type RawUniverseFollowingsForUserData = ObjectPrettify<{ universeId: Identifier; userId: UserId; }>[]; export type RawUniverseFollowingStatusForUserData = { UniverseId: UniverseId; UserId: UserId; CanFollow: boolean; IsFollowing: boolean; FollowingCountByType: number; FollowingLimitByType: number; }; export type PrettifiedUniverseFollowingStatusForUserData = ObjectPrettify>>;