Merge remote-tracking branch 'upstream/dev' into dev

This commit is contained in:
thororen1234 2024-11-29 18:20:14 -05:00
commit 1207af83ad
3 changed files with 14 additions and 9 deletions

View file

@ -21,6 +21,7 @@ import { findByPropsLazy, waitFor } from "@webpack";
export let React: typeof import("react");
export let useState: typeof React.useState;
export let useEffect: typeof React.useEffect;
export let useLayoutEffect: typeof React.useLayoutEffect;
export let useMemo: typeof React.useMemo;
export let useRef: typeof React.useRef;
export let useReducer: typeof React.useReducer;
@ -30,5 +31,5 @@ export const ReactDOM: typeof import("react-dom") & typeof import("react-dom/cli
waitFor("useState", m => {
React = m;
({ useEffect, useState, useMemo, useRef, useReducer, useCallback } = React);
({ useEffect, useState, useLayoutEffect, useMemo, useRef, useReducer, useCallback } = React);
});