@tanstack/react-start-client 1.132.0-alpha.7 → 1.132.0-alpha.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,4 +3,3 @@ export { type DehydratedRouter, type IsomorphicFn, type ServerOnlyFn, type Clien
3
3
  export { StartClient } from './StartClient.js';
4
4
  export { renderRsc } from './renderRSC.js';
5
5
  export { useServerFn } from './useServerFn.js';
6
- export * from './serializer.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/react-start-client",
3
- "version": "1.132.0-alpha.7",
3
+ "version": "1.132.0-alpha.9",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -46,9 +46,9 @@
46
46
  "cookie-es": "^1.2.2",
47
47
  "tiny-invariant": "^1.3.3",
48
48
  "tiny-warning": "^1.0.3",
49
- "@tanstack/react-router": "1.132.0-alpha.4",
50
- "@tanstack/router-core": "1.132.0-alpha.4",
51
- "@tanstack/start-client-core": "1.132.0-alpha.7"
49
+ "@tanstack/react-router": "1.132.0-alpha.8",
50
+ "@tanstack/router-core": "1.132.0-alpha.8",
51
+ "@tanstack/start-client-core": "1.132.0-alpha.9"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@testing-library/react": "^16.2.0",
package/src/index.tsx CHANGED
@@ -57,4 +57,3 @@ export {
57
57
  export { StartClient } from './StartClient'
58
58
  export { renderRsc } from './renderRSC'
59
59
  export { useServerFn } from './useServerFn'
60
- export * from './serializer'
@@ -10,6 +10,8 @@ test('createServerFn returns RSC', () => {
10
10
  }))
11
11
 
12
12
  expectTypeOf(fn()).toEqualTypeOf<
13
- Promise<{ rscs: readonly [ReadableStream, ReadableStream] }>
13
+ Promise<{
14
+ rscs: readonly [ReadableStream, ReadableStream]
15
+ }>
14
16
  >()
15
17
  })
@@ -1,6 +0,0 @@
1
- import type * as React from 'react';
2
- declare module '@tanstack/start-client-core' {
3
- interface SerializerExtensions {
4
- ReadableStream: React.JSX.Element;
5
- }
6
- }
package/src/serializer.ts DELETED
@@ -1,7 +0,0 @@
1
- import type * as React from 'react'
2
-
3
- declare module '@tanstack/start-client-core' {
4
- export interface SerializerExtensions {
5
- ReadableStream: React.JSX.Element
6
- }
7
- }