UNPKG

@isor/sink

Version:
18 lines (17 loc) 452 B
import { ServiceOverseer } from "./overseer"; import { Service } from "./service"; export declare class Sink { private accessToken; constructor(accessToken: string); balance(): Promise<{ raw: any; balance: number; currency: string; }>; serviceInfo(service: Service): Promise<{ price: any; currency: string; stock: any; }>; lease(service: Service): Promise<ServiceOverseer>; }