feat: support webhook (#1298)

This commit is contained in:
Innei
2023-12-24 21:13:07 +08:00
committed by GitHub
parent 309184c5c6
commit c6d037db1d
28 changed files with 758 additions and 26 deletions

6
packages/webhook/globals.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
declare global {
interface JSON {
safeParse: typeof JSON.parse
}
}
export {}