UNPKG

@databricks/sql

Version:

Driver for connection to Databricks SQL via Thrift API.

9 lines (8 loc) 395 B
import BaseCommand from './BaseCommand'; import { TGetTableTypesReq, TGetTableTypesResp } from '../../../thrift/TCLIService_types'; import IThriftClient from '../../contracts/IThriftClient'; type Client = Pick<IThriftClient, 'GetTableTypes'>; export default class GetTableTypesCommand extends BaseCommand<Client> { execute(data: TGetTableTypesReq): Promise<TGetTableTypesResp>; } export {};