import BaseCommand from './BaseCommand'; import { TFetchResultsReq, TFetchResultsResp } from '../../../thrift/TCLIService_types'; import IThriftClient from '../../contracts/IThriftClient'; type Client = Pick; /** * TFetchResultsReq.fetchType - 0 represents Query output. 1 represents Log */ export default class FetchResultsCommand extends BaseCommand { execute(data: TFetchResultsReq): Promise; } export {};