import BaseCommand from './BaseCommand'; import { TGetColumnsReq, TGetColumnsResp } from '../../../thrift/TCLIService_types'; import IThriftClient from '../../contracts/IThriftClient'; type Client = Pick; export default class GetColumnsCommand extends BaseCommand { execute(data: TGetColumnsReq): Promise; } export {};