1
0
Fork 0
mirror of synced 2024-10-02 18:16:29 +13:00

Sign up/Sign In with Microsoft (#9873)

* Type updates

* Update type def for new account provider type of microsoft
This commit is contained in:
Rory Powell 2023-03-15 16:43:29 +00:00 committed by GitHub
parent 15b683867c
commit 65d340543c

View file

@ -81,10 +81,12 @@ export const isSSOAccount = (account: Account): account is SSOAccount =>
export enum AccountSSOProviderType {
GOOGLE = "google",
MICROSOFT = "microsoft",
}
export enum AccountSSOProvider {
GOOGLE = "google",
MICROSOFT = "microsoft",
}
export interface AccountSSO {