UNPKG

t-comm

Version:

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

20 lines (19 loc) 537 B
import type { IAddedMap, ISecretInfo } from './type'; export declare function getHistoryModeConfigDiffAndSendRobot({ secretInfo, appName, key, chatId, webhookUrl, mentions, }: { secretInfo: ISecretInfo; appName: string; key: string; chatId?: string | string[]; webhookUrl?: string; mentions?: Array<string>; }): Promise<{ message: string; equal: true; addedMap: IAddedMap; deletedMap: IAddedMap; } | { message: string; equal: false; addedMap: IAddedMap; deletedMap: IAddedMap; }>;