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