@codesandbox/api
Version:
The CodeSandbox API
7 lines (6 loc) • 340 B
TypeScript
import type { AuthenticationProvider, MetaFeatures } from "../RESTTypes";
export declare function LoginModal({ metaFeatures, onLogin, getSSORedirectUrl, }: {
metaFeatures: MetaFeatures;
onLogin: (provider: AuthenticationProvider) => void;
getSSORedirectUrl: (email: string) => Promise<string>;
}): import("preact").JSX.Element;