picgo
Version:
A tool for image uploading
10 lines (9 loc) • 340 B
TypeScript
import type { CloudBillingOverview, CloudUsage, IPicGo } from '../../../types';
declare class BillingService {
private readonly client;
private readonly ctx;
constructor(ctx: IPicGo);
getUsage(token?: string): Promise<CloudUsage>;
getOverview(token?: string): Promise<CloudBillingOverview>;
}
export { BillingService };