UNPKG

ptt-client

Version:

A Node client for fetching data from ptt.cc.

8 lines (7 loc) 297 B
import { QueryBuilder } from './QueryBuilder'; export declare abstract class SelectQueryBuilder<T> extends QueryBuilder<T> { constructor(...args: any[]); abstract where(type: string, condition: any): this; abstract get(): Promise<T[]>; abstract getOne(): Promise<T | undefined>; }