SongGuess
    Preparing search index...

    Variable PlayerPicksQuestionMessageSchemaConst

    PlayerPicksQuestionMessageSchema: ZodObject<
        {
            correctAnswer: ZodOptional<
                ZodObject<
                    {
                        artist: ZodString;
                        audioURL: ZodUnion<
                            readonly [ZodURL, ZodCustomStringFormat<"SoundCloudSong">],
                        >;
                        cover: ZodNullable<ZodUnion<readonly [ZodURL, ZodURL]>>;
                        hrefURL: ZodUnion<readonly [ZodURL, ZodURL]>;
                        name: ZodString;
                    },
                    $strip,
                >,
            >;
            pickerId: ZodString;
            questionCount: ZodInt;
            questionCurrent: ZodInt;
            questionType: ZodLiteral<"player_picks">;
            startPos: ZodNumber;
        },
        $strip,
    > = ...