@stencil/react-output-target
Version:
React output target for @stencil/core components.
12 lines (10 loc) • 528 B
TypeScript
import { ComponentCompilerMeta } from '@stencil/core/internal';
import { RenderToStringOptions } from './runtime/ssr.js';
export declare const createStencilReactComponents: ({ components, stencilPackageName, customElementsDir, hydrateModule, clientModule, serializeShadowRoot, }: {
components: ComponentCompilerMeta[];
stencilPackageName: string;
customElementsDir: string;
hydrateModule?: string;
clientModule?: string;
serializeShadowRoot?: RenderToStringOptions["serializeShadowRoot"];
}) => string;