UNPKG

@timescaledb/typeorm

Version:

This is the official TimescaleDB plugin for TypeORM.

4 lines (3 loc) 287 B
import { Repository, ObjectLiteral } from 'typeorm'; import { GetCandlesticksOptions, CandlesticksResult } from '@timescaledb/schemas'; export declare function getCandlesticks<T extends ObjectLiteral>(this: Repository<T>, options: GetCandlesticksOptions): Promise<CandlesticksResult[]>;