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