Variable PlayerPickSongMessageSchemaConst
PlayerPickSongMessageSchema: ZodObject<
{
song: ZodObject<
{
artist: ZodString;
audioURL: ZodUnion<
readonly [ZodURL, ZodCustomStringFormat<"SoundCloudSong">],
>;
cover: ZodNullable<ZodUnion<readonly [ZodURL, ZodURL]>>;
hrefURL: ZodUnion<readonly [ZodURL, ZodURL]>;
name: ZodString;
},
$strip,
>;
startPos: ZodNumber;
type: ZodDefault<ZodLiteral<"player_pick_song">>;
},
$strip,
> = ...
Schema for messages containing the player's selected song in the choose step of a PlayerPicksGame.