Files
tf2wikipricing/global.d.ts
xenticore 8b2bf38eff refactor: declare GM_fetch as global for typescript
important for the compiler when mocking for unit tests
2025-03-28 22:52:42 -04:00

7 lines
117 B
TypeScript

export {};
declare global {
interface Window {
GM_fetch: typeof fetch; // or a more specific custom type
}
}