t-comm
Version:
专业、稳定、纯粹的工具库
20 lines (19 loc) • 613 B
TypeScript
export declare function genRUMnPerfData({ secretId, secretKey, id, startTime, endTime, type, }: {
secretId: string;
secretKey: string;
id: string | number;
startTime: number;
endTime: number;
type?: string;
}): Promise<Record<string, any>[]>;
export declare function genRUMPerfImgAndSend({ secretId, secretKey, id, startTime, endTime, type, title, chatId, webhookUrl, }: {
secretId: string;
secretKey: string;
id: string | number;
startTime: number;
endTime: number;
type?: string;
title?: string;
chatId: string;
webhookUrl: string;
}): Promise<void>;