UNPKG

@databricks/sql

Version:

Driver for connection to Databricks SQL via Thrift API.

9 lines (8 loc) 254 B
import TCLIService from '../../thrift/TCLIService'; type ThriftClient = TCLIService.Client; type ThriftClientMethods = { [K in keyof ThriftClient]: ThriftClient[K]; }; export default interface IThriftClient extends ThriftClientMethods { } export {};