UNPKG

egnyte-resellers

Version:

Library for managing things against the undocumented egnyte resellers API.

10 lines (9 loc) 402 B
import { EgnyteConfig, StorageStats } from '../types'; import { Base } from '../base/base'; export declare class Plans extends Base { constructor(_config: EgnyteConfig); getPlans(): Promise<any>; getAllProtectPlans(): Promise<StorageStats[]>; UpdatePowerUserLicensing(planId: string, newTotalLicenses: number): Promise<any>; _getAllPlanIds(authCookie: string): Promise<string[]>; }