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