|
| 1 | +diff --git a/node_modules/@types/react/index.d.ts b/node_modules/@types/react/index.d.ts |
| 2 | +index 6ea73ef..cb51757 100644 |
| 3 | +--- a/node_modules/@types/react/index.d.ts |
| 4 | ++++ b/node_modules/@types/react/index.d.ts |
| 5 | +@@ -151,7 +151,7 @@ declare namespace React { |
| 6 | + /** |
| 7 | + * The current value of the ref. |
| 8 | + */ |
| 9 | +- readonly current: T | null; |
| 10 | ++ current: T; |
| 11 | + } |
| 12 | + |
| 13 | + interface DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES { |
| 14 | +@@ -186,7 +186,7 @@ declare namespace React { |
| 15 | + * @see {@link RefObject} |
| 16 | + */ |
| 17 | + |
| 18 | +- type Ref<T> = RefCallback<T> | RefObject<T> | null; |
| 19 | ++ type Ref<T> = RefCallback<T> | RefObject<T | null> | null; |
| 20 | + /** |
| 21 | + * A legacy implementation of refs where you can pass a string to a ref prop. |
| 22 | + * |
| 23 | +@@ -300,7 +300,7 @@ declare namespace React { |
| 24 | + * |
| 25 | + * @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs} |
| 26 | + */ |
| 27 | +- ref?: LegacyRef<T> | undefined; |
| 28 | ++ ref?: LegacyRef<T | null> | undefined; |
| 29 | + } |
| 30 | + |
| 31 | + /** |
| 32 | +@@ -1234,7 +1234,7 @@ declare namespace React { |
| 33 | + * |
| 34 | + * @see {@link ForwardRefRenderFunction} |
| 35 | + */ |
| 36 | +- type ForwardedRef<T> = ((instance: T | null) => void) | MutableRefObject<T | null> | null; |
| 37 | ++ type ForwardedRef<T> = ((instance: T | null) => void) | RefObject<T | null> | null; |
| 38 | + |
| 39 | + /** |
| 40 | + * The type of the function passed to {@link forwardRef}. This is considered different |
| 41 | +@@ -1565,7 +1565,7 @@ declare namespace React { |
| 42 | + [propertyName: string]: any; |
| 43 | + } |
| 44 | + |
| 45 | +- function createRef<T>(): RefObject<T>; |
| 46 | ++ function createRef<T>(): RefObject<T | null>; |
| 47 | + |
| 48 | + /** |
| 49 | + * The type of the component returned from {@link forwardRef}. |
| 50 | +@@ -1989,7 +1989,7 @@ declare namespace React { |
| 51 | + * @version 16.8.0 |
| 52 | + * @see {@link https://react.dev/reference/react/useRef} |
| 53 | + */ |
| 54 | +- function useRef<T>(initialValue: T): MutableRefObject<T>; |
| 55 | ++ function useRef<T>(initialValue: T): RefObject<T>; |
| 56 | + // convenience overload for refs given as a ref prop as they typically start with a null value |
| 57 | + /** |
| 58 | + * `useRef` returns a mutable ref object whose `.current` property is initialized to the passed argument |
| 59 | +@@ -2004,7 +2004,7 @@ declare namespace React { |
| 60 | + * @version 16.8.0 |
| 61 | + * @see {@link https://react.dev/reference/react/useRef} |
| 62 | + */ |
| 63 | +- function useRef<T>(initialValue: T | null): RefObject<T>; |
| 64 | ++ function useRef<T>(initialValue: T | null): RefObject<T | null>; |
| 65 | + // convenience overload for potentially undefined initialValue / call with 0 arguments |
| 66 | + // has a default to stop it from defaulting to {} instead |
| 67 | + /** |
| 68 | +@@ -2017,7 +2017,7 @@ declare namespace React { |
| 69 | + * @version 16.8.0 |
| 70 | + * @see {@link https://react.dev/reference/react/useRef} |
| 71 | + */ |
| 72 | +- function useRef<T = undefined>(initialValue?: undefined): MutableRefObject<T | undefined>; |
| 73 | ++ function useRef<T>(initialValue: T | undefined): RefObject<T | undefined>; |
| 74 | + /** |
| 75 | + * The signature is identical to `useEffect`, but it fires synchronously after all DOM mutations. |
| 76 | + * Use this to read layout from the DOM and synchronously re-render. Updates scheduled inside |
0 commit comments