@typed-discord/rest
    Preparing search index...

    Interface ResolvedObjectsResponse

    interface ResolvedObjectsResponse {
        channels?:
            | {
                [key: string]: | ThreadResponse
                | GuildChannelResponse
                | PrivateChannelResponse
                | PrivateGroupChannelResponse;
            }
            | null;
        members?: { [key: string]: BasicGuildMemberResponse }
        | null;
        roles?: { [key: string]: GuildRoleResponse } | null;
        users?: { [key: string]: UserResponse } | null;
    }
    Index

    Properties

    channels?:
        | {
            [key: string]: | ThreadResponse
            | GuildChannelResponse
            | PrivateChannelResponse
            | PrivateGroupChannelResponse;
        }
        | null
    members?: { [key: string]: BasicGuildMemberResponse } | null
    roles?: { [key: string]: GuildRoleResponse } | null
    users?: { [key: string]: UserResponse } | null