Type Alias DropsGamesFunctionsInput

DropsGamesFunctionsInput: {
    getDropsGames: {
        auth: string;
        limit?: number;
        offset?: number;
        search?: string;
    };
    getPlatformDropsGames: {
        auth: string;
        limit?: number;
        offset?: number;
        platform: "kick" | "twitch";
        search?: string;
    };
}