UNPKG

@lantsang/nestjs-tdengine

Version:

NestJS TDengine 驱动

13 lines (12 loc) 463 B
import { TDengineRestfulResponse } from '../interfaces/response/tdengine-restful.response.interface'; import { FormatUtil } from './format.util'; export declare class FindUtil { private readonly formatUtil; constructor(formatUtil: FormatUtil); /** * 解析查询原始数据 * @param param0 查询原始数据 * @returns 解析后的数据 */ resolveLastOne<T>({ column_meta: columnMeta, data }: TDengineRestfulResponse): T; }