mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-17 08:40:08 +02:00
11 lines
272 B
TypeScript
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;
|
|
}
|
|
}
|