mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
9 lines
563 B
TypeScript
9 lines
563 B
TypeScript
export const standardProviders = ["google", "github", "microsoft", "spotify", "facebook", "discord", "gitlab", "bitbucket", "linkedin", "apple", "x", "twitch"] as const;
|
|
// No more shared providers should be added except for special cases
|
|
export const sharedProviders = ["google", "github", "microsoft", "spotify"] as const;
|
|
export const allProviders = standardProviders;
|
|
|
|
export type ProviderType = typeof allProviders[number];
|
|
export type StandardProviderType = typeof standardProviders[number];
|
|
export type SharedProviderType = typeof sharedProviders[number];
|