@inertiajs/react
Advanced tools
+2
-2
| { | ||
| "name": "@inertiajs/react", | ||
| "version": "2.3.17", | ||
| "version": "2.3.18", | ||
| "license": "MIT", | ||
@@ -65,3 +65,3 @@ "description": "The React adapter for Inertia.js", | ||
| "lodash-es": "^4.17.23", | ||
| "@inertiajs/core": "2.3.17" | ||
| "@inertiajs/core": "2.3.18" | ||
| }, | ||
@@ -68,0 +68,0 @@ "scripts": { |
@@ -1,2 +0,2 @@ | ||
| import { CreateInertiaAppOptionsForCSR, CreateInertiaAppOptionsForSSR, InertiaAppSSRResponse, PageProps } from '@inertiajs/core'; | ||
| import { CreateInertiaAppOptionsForCSR, CreateInertiaAppOptionsForSSR, InertiaAppSSRResponse, PageProps, SharedPageProps } from '@inertiajs/core'; | ||
| import { ReactElement } from 'react'; | ||
@@ -18,4 +18,4 @@ import { renderToString } from 'react-dom/server'; | ||
| }; | ||
| export default function createInertiaApp<SharedProps extends PageProps = PageProps>(options: InertiaAppOptionsForCSR<SharedProps>): Promise<void>; | ||
| export default function createInertiaApp<SharedProps extends PageProps = PageProps>(options: InertiaAppOptionsForSSR<SharedProps>): Promise<InertiaAppSSRResponse>; | ||
| export default function createInertiaApp<SharedProps extends PageProps = PageProps & SharedPageProps>(options: InertiaAppOptionsForCSR<SharedProps>): Promise<void>; | ||
| export default function createInertiaApp<SharedProps extends PageProps = PageProps & SharedPageProps>(options: InertiaAppOptionsForSSR<SharedProps>): Promise<InertiaAppSSRResponse>; | ||
| export {}; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
352801
0.06%+ Added
- Removed
Updated