mirror of https://github.com/vuejs/core.git
14 lines
268 B
TypeScript
14 lines
268 B
TypeScript
|
import { VNode } from 'vue'
|
||
|
import { SSRBufferItem } from './renderToString'
|
||
|
|
||
|
export function renderVNode(
|
||
|
push: (item: SSRBufferItem) => void,
|
||
|
vnode: VNode
|
||
|
) {}
|
||
|
|
||
|
export function renderProps() {}
|
||
|
|
||
|
export function renderClass() {}
|
||
|
|
||
|
export function renderStyle() {}
|