interface OAuthConfig {
    domain: string;
    providers?: (OAuthProvider | CustomProvider)[];
    redirectSignIn: string[];
    redirectSignOut: string[];
    responseType: "code" | "token";
    scopes: OAuthScope[];
}

Properties

domain: string
providers?: (OAuthProvider | CustomProvider)[]
redirectSignIn: string[]
redirectSignOut: string[]
responseType: "code" | "token"
scopes: OAuthScope[]