matrix-react-sdk
Version:
SDK for matrix.org using React
13 lines (12 loc) • 358 B
TypeScript
import React from "react";
import { MatrixClient } from "matrix-js-sdk/src/client";
import { ISSOFlow } from "../../../Login";
interface IProps {
matrixClient: MatrixClient;
flow: ISSOFlow;
loginType?: "sso" | "cas";
fragmentAfterLogin?: string;
primary?: boolean;
}
declare const SSOButtons: React.FC<IProps>;
export default SSOButtons;