mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-19 05:23:14 +02:00
7 lines
171 B
TypeScript
7 lines
171 B
TypeScript
|
|
export interface OAuthSignInDto {
|
||
|
|
provider: "github" | "google" | "microsoft" | "discord" | "oidc";
|
||
|
|
providerId: string;
|
||
|
|
providerUsername: string;
|
||
|
|
email: string;
|
||
|
|
}
|