UNPKG

t-comm

Version:

专业、稳定、纯粹的工具库

16 lines (15 loc) 524 B
import type { IRequestInfo, ISearchInfo } from './types'; /** * 请求开源治理数据并发送 * @param options 配置信息 */ export declare function sendOpenSourceReport({ date, chatId, webhookUrl, requestInfo, searchInfo, maxShowLinkNum, whiteList, filterOrgPath, }: { date: string | number | Date; chatId: string; webhookUrl: string; requestInfo: IRequestInfo; searchInfo: ISearchInfo; maxShowLinkNum?: number; whiteList?: Array<string>; filterOrgPath?: string; }): Promise<void>;