Type alias SSOResponse

SSOResponse: {
    data: {
        url: string;
    };
    error: null;
} | {
    data: null;
    error: AuthError;
}

Generated using TypeDoc