in which pylon replaces intercom (#2783)

This commit is contained in:
Shuchang Zheng
2025-06-25 05:45:07 +08:00
committed by GitHub
parent 6b5699a98c
commit 60dcd6bcb1
7 changed files with 91 additions and 4 deletions

7
skyvern-frontend/src/global.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
interface Window {
pylon: {
chat_settings: { [k: string]: string };
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
Pylon: (method: string, ...args: any[]) => void;
}