presto ts:使用Typescript库进行Presto DB操作 源码
Presto TS! 描述 presto-ts是npm Typescript库,使项目可以与SQL查询引擎PrestoDB进行交互 npm install --save presto-ts 例子 跑步: import { Presto, PrestoQueryParams, PrestoResponse } from "presto-ts"; const prestoStatusUpdate = (prestoNotification: PrestoResponse): PrestoResponse => { console.log("NEW PRESTO QUERY STATUS") console.log(prestoNotification) return prestoNotification; } const errorPresto = (error: Er
用户评论