We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5260e94 commit b896fedCopy full SHA for b896fed
src/types/AugmentedTypes.ts
@@ -221,11 +221,14 @@ export type SkyblockProfilesResponse = Omit<
221
profiles: SkyBlockProfile[];
222
};
223
224
-export type SkyblockMuseumResponse = Omit<Paths.V2SkyblockMuseum.Get.Responses.$200, 'profile'> &
+export type SkyblockMuseumResponse = Omit<
225
+ Paths.V2SkyblockMuseum.Get.Responses.$200,
226
+ "profile"
227
+> &
228
Record<string, unknown> & {
229
success?: true;
230
members: {
- [key: string]: SkyBlockMuseumMember | undefined
231
+ [key: string]: SkyBlockMuseumMember | undefined;
232
233
234
0 commit comments