Files
decky-frontend-lib/global.d.ts
2025-10-15 00:04:31 -04:00

11 lines
272 B
TypeScript

import type * as React from 'react';
import type * as ReactDOM from 'react-dom';
import type * as JSXRuntime from 'react/jsx-runtime';
declare global {
interface Window {
SP_REACT: typeof React;
SP_REACTDOM: typeof ReactDOM;
SP_JSX: typeof JSXRuntime;
}
}