UNPKG

@pisell/pisellos

Version:

一个可扩展的前端模块化SDK框架,支持插件系统

12 lines (11 loc) 274 B
interface contentItem { key: string; value: string; } interface sendWebhookProps { title: string; content: contentItem[]; webhook: string; } export declare const sendWarningLog: ({ title, content, webhook }: sendWebhookProps) => Promise<any>; export {};