@databricks/sql
Version:
Driver for connection to Databricks SQL via Thrift API.
11 lines (10 loc) • 326 B
TypeScript
/// <reference types="node" />
import Int64 from 'node-int64';
import { TGetInfoValue } from '../../thrift/TCLIService_types';
type InfoResultType = string | number | Buffer | Int64 | null;
export default class InfoValue {
private value;
constructor(value: TGetInfoValue);
getValue(): InfoResultType;
}
export {};