UNPKG

@hapic/oauth2

Version:

A oauth2 api client based on axios.

12 lines (11 loc) 315 B
import type { AuthorizeParameters } from './types'; import { BaseAPI } from '../base'; export declare class AuthorizeAPI extends BaseAPI { /** * Build authorize url based on * input parameters. * * @param parameters */ buildURL(parameters?: Partial<AuthorizeParameters>): string; }