71 lines
4.1 KiB
TypeScript
71 lines
4.1 KiB
TypeScript
/// <reference types="node" />
|
|
import { VNode, ComponentInternalInstance, App, Slots, Component } from 'vue';
|
|
import { Readable, Writable } from 'stream';
|
|
import { ComponentPublicInstance, Directive } from '@vue/runtime-core';
|
|
export { includeBooleanAttr as ssrIncludeBooleanAttr } from '@vue/shared';
|
|
|
|
type SSRBuffer = SSRBufferItem[] & {
|
|
hasAsync?: boolean;
|
|
};
|
|
type SSRBufferItem = string | SSRBuffer | Promise<SSRBuffer>;
|
|
type PushFn = (item: SSRBufferItem) => void;
|
|
type Props = Record<string, unknown>;
|
|
export type SSRContext = {
|
|
[key: string]: any;
|
|
teleports?: Record<string, string>;
|
|
/* removed internal: __teleportBuffers */
|
|
/* removed internal: __watcherHandles */
|
|
};
|
|
export declare function renderVNode(push: PushFn, vnode: VNode, parentComponent: ComponentInternalInstance, slotScopeId?: string): void;
|
|
|
|
export declare function renderToString(input: App | VNode, context?: SSRContext): Promise<string>;
|
|
|
|
export interface SimpleReadable {
|
|
push(chunk: string | null): void;
|
|
destroy(err: any): void;
|
|
}
|
|
export declare function renderToSimpleStream<T extends SimpleReadable>(input: App | VNode, context: SSRContext, stream: T): T;
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
export declare function renderToStream(input: App | VNode, context?: SSRContext): Readable;
|
|
export declare function renderToNodeStream(input: App | VNode, context?: SSRContext): Readable;
|
|
export declare function pipeToNodeWritable(input: App | VNode, context: SSRContext | undefined, writable: Writable): void;
|
|
export declare function renderToWebStream(input: App | VNode, context?: SSRContext): ReadableStream;
|
|
export declare function pipeToWebWritable(input: App | VNode, context: SSRContext | undefined, writable: WritableStream): void;
|
|
|
|
type SSRSlots = Record<string, SSRSlot>;
|
|
type SSRSlot = (props: Props, push: PushFn, parentComponent: ComponentInternalInstance | null, scopeId: string | null) => void;
|
|
export declare function ssrRenderSlot(slots: Slots | SSRSlots, slotName: string, slotProps: Props, fallbackRenderFn: (() => void) | null, push: PushFn, parentComponent: ComponentInternalInstance, slotScopeId?: string): void;
|
|
export declare function ssrRenderSlotInner(slots: Slots | SSRSlots, slotName: string, slotProps: Props, fallbackRenderFn: (() => void) | null, push: PushFn, parentComponent: ComponentInternalInstance, slotScopeId?: string, transition?: boolean): void;
|
|
|
|
export declare function ssrRenderComponent(comp: Component, props?: Props | null, children?: Slots | SSRSlots | null, parentComponent?: ComponentInternalInstance | null, slotScopeId?: string): SSRBuffer | Promise<SSRBuffer>;
|
|
|
|
export declare function ssrRenderTeleport(parentPush: PushFn, contentRenderFn: (push: PushFn) => void, target: string, disabled: boolean, parentComponent: ComponentInternalInstance): void;
|
|
|
|
export declare function ssrRenderAttrs(props: Record<string, unknown>, tag?: string): string;
|
|
export declare function ssrRenderDynamicAttr(key: string, value: unknown, tag?: string): string;
|
|
export declare function ssrRenderAttr(key: string, value: unknown): string;
|
|
export declare function ssrRenderClass(raw: unknown): string;
|
|
export declare function ssrRenderStyle(raw: unknown): string;
|
|
|
|
export declare function ssrInterpolate(value: unknown): string;
|
|
|
|
export declare function ssrRenderList(source: unknown, renderItem: (value: unknown, key: string | number, index?: number) => void): void;
|
|
|
|
export declare function ssrRenderSuspense(push: PushFn, { default: renderContent }: Record<string, (() => void) | undefined>): Promise<void>;
|
|
|
|
export declare function ssrGetDirectiveProps(instance: ComponentPublicInstance, dir: Directive, value?: any, arg?: string, modifiers?: Record<string, boolean>): Record<string, any>;
|
|
|
|
export declare const ssrLooseEqual: (a: unknown, b: unknown) => boolean;
|
|
export declare function ssrLooseContain(arr: unknown[], value: unknown): boolean;
|
|
export declare function ssrRenderDynamicModel(type: unknown, model: unknown, value: unknown): string;
|
|
export declare function ssrGetDynamicModelProps(existingProps: any, model: unknown): {
|
|
checked: boolean;
|
|
value?: undefined;
|
|
} | {
|
|
value: unknown;
|
|
checked?: undefined;
|
|
} | null;
|
|
|
|
export { renderVNode as ssrRenderVNode };
|