t-comm
Version:
专业、稳定、纯粹的工具库
18 lines (17 loc) • 632 B
TypeScript
import type { FetchRainbowConfigOptions, ISecretInfo } from '../rainbow/types';
import type { IAddedMap } from './type';
export declare function getHistoryModeConfigDiffAndSendRobot({ secretInfo, appName, key, chatId, webhookUrl, mentions, fetchRainbowConfigOptions, heartbeat, }: {
secretInfo: ISecretInfo;
appName: string;
key: string;
chatId?: string | string[];
webhookUrl?: string;
mentions?: Array<string>;
fetchRainbowConfigOptions?: FetchRainbowConfigOptions;
heartbeat?: boolean;
}): Promise<{
message: string;
equal: boolean;
addedMap: IAddedMap;
deletedMap: IAddedMap;
}>;