UNPKG

@databricks/sql

Version:

Driver for connection to Databricks SQL via Thrift API.

9 lines (8 loc) 383 B
import BaseCommand from './BaseCommand'; import { TGetTypeInfoReq, TGetTypeInfoResp } from '../../../thrift/TCLIService_types'; import IThriftClient from '../../contracts/IThriftClient'; type Client = Pick<IThriftClient, 'GetTypeInfo'>; export default class GetTypeInfoCommand extends BaseCommand<Client> { execute(data: TGetTypeInfoReq): Promise<TGetTypeInfoResp>; } export {};