Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
7 lines
412 B
Plaintext
7 lines
412 B
Plaintext
import { type ReactElement } from 'react';
|
|
/**
|
|
* Since Next.js 15.4, `React.isValidElement()` returns `false` for components that cross the server-client boundary.
|
|
* This utility expands on that check so that it returns true for valid React elements.
|
|
*/
|
|
export declare function isValidReactElement<P>(object: {} | null | undefined): object is ReactElement<P>;
|
|
//# sourceMappingURL=isValidReactElement.d.ts.map |