abowire
Version:
This is the official **Abowire Javascript SDK**, which makes it easy to connect to the Abowire **GraphQL API** and includes all the required dependencies you need.
13 lines (12 loc) • 490 B
TypeScript
import { SDKConfigOptions } from './sdk.schema';
import { Button, Checkout } from '../components';
import { BaseSDK } from './base-sdk';
import { LoginOptions } from '../auth/types';
export declare class BrowserSDK extends BaseSDK {
button: Button;
checkout: Checkout;
constructor(config?: SDKConfigOptions);
loadComponents(): void;
protected getAuth(): import("../auth/types").Authentication;
getLoginUrl(loginOptions: LoginOptions): Promise<string | undefined>;
}