Files

11 lines
272 B
TypeScript
Raw Permalink Normal View History

2025-10-15 00:04:31 -04:00
import type * as React from 'react';
import type * as ReactDOM from 'react-dom';
import type * as JSXRuntime from 'react/jsx-runtime';
declare global {
2024-05-12 15:48:13 -04:00
interface Window {
SP_REACT: typeof React;
2025-10-15 00:04:31 -04:00
SP_REACTDOM: typeof ReactDOM;
SP_JSX: typeof JSXRuntime;
2024-05-12 15:48:13 -04:00
}
}