UNPKG

@clhs-api/core

Version:

Grab news form CLHS homepage painlessly. Brought to you by VFLC <3

8 lines (7 loc) 364 B
import { NewsListQueryCB, NewsListQueryResult, QueryInput } from "./types"; /** * 取得新聞列表 * @param queryInput 預設為`首頁`的前`20`則新聞 */ export declare function newsListQuery(queryInput?: QueryInput): Promise<NewsListQueryResult>; export declare function newsListQuery(queryInput: QueryInput, cb: NewsListQueryCB): Promise<void>;