@databricks/sql
Version:
Driver for connection to Databricks SQL via Thrift API.
9 lines (8 loc) • 407 B
TypeScript
import BaseCommand from './BaseCommand';
import { TCancelOperationReq, TCancelOperationResp } from '../../../thrift/TCLIService_types';
import IThriftClient from '../../contracts/IThriftClient';
type Client = Pick<IThriftClient, 'CancelOperation'>;
export default class CancelOperationCommand extends BaseCommand<Client> {
execute(data: TCancelOperationReq): Promise<TCancelOperationResp>;
}
export {};