(
input: App | VNode,
context: SSRContext = {},
)
| 95 | * @deprecated |
| 96 | */ |
| 97 | export function renderToStream( |
| 98 | input: App | VNode, |
| 99 | context: SSRContext = {}, |
| 100 | ): Readable { |
| 101 | console.warn( |
| 102 | `[@vue/server-renderer] renderToStream is deprecated - use renderToNodeStream instead.`, |
| 103 | ) |
| 104 | return renderToNodeStream(input, context) |
| 105 | } |
| 106 | |
| 107 | export function renderToNodeStream( |
| 108 | input: App | VNode, |
nothing calls this directly
no test coverage detected