| 3 | import { getFetchPrefix } from './utils.js'; |
| 4 | |
| 5 | export 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 | |
| 28 | export interface RecentCommentData extends BaseWalineResponseComment { |
| 29 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected