@particle-network/connectkit
Version:
5 lines (4 loc) • 393 B
TypeScript
declare const socialAuthTypes: readonly ["facebook", "google", "apple", "twitter", "discord", "github", "twitch", "microsoft", "linkedin"];
export type SocialAuthType = (typeof socialAuthTypes)[number];
export declare const isSocialAuthType: (authType: string) => authType is "facebook" | "google" | "apple" | "twitter" | "discord" | "github" | "twitch" | "microsoft" | "linkedin";
export {};