8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
interface Window {
|
|
pylon: {
|
|
chat_settings: { [k: string]: string };
|
|
};
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
Pylon: (method: string, ...args: any[]) => void;
|
|
}
|