UNPKG

@teamhanko/hanko-frontend-sdk

Version:

A package for simplifying UI integration with the Hanko API. It is meant for use in browsers only.

16 lines (15 loc) 462 B
import { HttpClient, HttpClientOptions } from "./HttpClient"; /** * A class to be extended by the other client classes. * * @abstract * @category SDK * @subcategory Internal * @param {string} api - The URL of your Hanko API instance * @param {HttpClientOptions} options - The options that can be used */ declare abstract class Client { client: HttpClient; constructor(api: string, options: HttpClientOptions); } export { Client };