UNPKG

@clhs-api/core

Version:

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

8 lines (7 loc) 305 B
import { NewsContent } from "../types"; import { NewsContentQueryCB } from "./types"; /** * 取得指定`id`的新聞內容 */ export declare function newsContentQuery(id: string): Promise<NewsContent>; export declare function newsContentQuery(id: string, cb: NewsContentQueryCB): Promise<void>;