MCPcopy Create free account
hub / github.com/walinejs/waline / GetRecentCommentOptions

Interface GetRecentCommentOptions

packages/api/src/recentComment.ts:5–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import { getFetchPrefix } from './utils.js';
4
5export interface GetRecentCommentOptions extends BaseAPIOptions {
6 /**
7 * 获取评论的数量
8 *
9 * Comment number to be fetched
10 */
11 count: number;
12
13 /**
14 * 取消请求的信号
15 *
16 * AbortSignal to cancel request
17 */
18 signal?: AbortSignal;
19
20 /**
21 * 用户令牌
22 *
23 * User token
24 */
25 token?: string;
26}
27
28export interface RecentCommentData extends BaseWalineResponseComment {
29 /**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected