UNPKG

@databricks/sql

Version:

Driver for connection to Databricks SQL via Thrift API.

9 lines (8 loc) 403 B
import BaseCommand from './BaseCommand'; import { TCloseSessionReq, TCloseSessionResp } from '../../../thrift/TCLIService_types'; import IThriftClient from '../../contracts/IThriftClient'; type Client = Pick<IThriftClient, 'CloseSession'>; export default class CloseSessionCommand extends BaseCommand<Client> { execute(openSessionRequest: TCloseSessionReq): Promise<TCloseSessionResp>; } export {};