UNPKG

mnubo-sdk

Version:
16 lines (15 loc) 443 B
import { Client } from '../mnubo'; export interface StartExportResponse { streamsFirstPages: Array<string>; columns: Array<object>; } export interface StreamPageResponse { nextPage?: string; rows: Array<Array<any>>; } export declare class Bigdata { private client; constructor(client: Client); startExport(query: object): Promise<StartExportResponse>; streamPage(pageId: string): Promise<StreamPageResponse>; }