UNPKG

@elrondnetwork/erdjs-data-api-client

Version:
13 lines (12 loc) 403 B
import { DataApiQueryType } from '../entities'; export declare class DataApiBaseQuery { readonly type: DataApiQueryType; readonly query: string; readonly variables: any; readonly responsePath: string[]; constructor(type: DataApiQueryType, query: string, variables: any, responsePath: string[]); toJson(): { query: string; variables: Record<string, any>; }; }