UNPKG

egnyte-resellers

Version:

Library for managing things against the undocumented egnyte resellers API.

12 lines (11 loc) 360 B
import { EgnyteConfig } from '../types'; import { AxiosInstance } from 'axios'; export declare class Base { readonly config: EgnyteConfig; readonly http: AxiosInstance; resellerId: string; constructor(config: EgnyteConfig); authenticate(): Promise<any>; setResellerId(authCookie: string): Promise<string>; private _getCsrfTokens; }