supertokens-auth-react
Version:
ReactJS SDK that provides login functionality with SuperTokens.
11 lines (10 loc) • 357 B
TypeScript
/// <reference types="react" />
import type { BuiltInProviderConfig } from "./types";
import Provider from ".";
export default class Gitlab extends Provider {
private static instance?;
constructor(config?: BuiltInProviderConfig);
getLogo: () => JSX.Element;
static init(config?: BuiltInProviderConfig): Provider;
static reset(): void;
}