roavatar-renderer
    Preparing search index...

    Interface UserOmniSearch_Result

    interface UserOmniSearch_Result {
        nextPageToken: string;
        searchResults: {
            contentGroupType: "User";
            contents: {
                contentId: number;
                contentType: "User";
                defaultLayoutData: null;
                displayName: string;
                hasVerifiedBadge: boolean;
                previousUsernames: string[] | null;
                username: string;
            }[];
        }[];
    }
    Index

    Properties

    nextPageToken: string
    searchResults: {
        contentGroupType: "User";
        contents: {
            contentId: number;
            contentType: "User";
            defaultLayoutData: null;
            displayName: string;
            hasVerifiedBadge: boolean;
            previousUsernames: string[] | null;
            username: string;
        }[];
    }[]