Type Alias MeFunctionsInput
MeFunctionsInput: {
connectPlatform: {
auth: string;
code: string;
platform: "twitch" | "kick" | "rumble";
};
getConnectPlatformUrl: {
auth: string;
platform: "twitch";
};
getCurrentUser: {
auth: string;
};
getCurrentUserGuilds: {
auth: string;
};
getGuildDiscordData: {
auth: string;
force?: boolean;
guildId: string;
type: "channels" | "roles" | "both";
};
unlinkPlatform: {
auth: string;
platform: "twitch" | "kick" | "rumble";
};
}