Files
freeCodeCamp/client/utils/declarations.d.ts
Huyen Nguyen 29607fb473 feat(client): prefetch next challenge (#55472)
Co-authored-by: ahmad abdolsaheb <ahmad.abdolsaheb@gmail.com>
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2024-07-19 11:12:07 +03:00

12 lines
324 B
TypeScript

declare global {
interface Window {
// This is a feature Gatsby adds to the `window` object.
// https://github.com/gatsbyjs/gatsby/blob/deb41cdfefbefe0c170b5dd7c10a19ba2b338f6e/packages/gatsby/cache-dir/production-app.js#L28
___loader: {
hovering: (path: string | null) => void;
};
}
}
export {};