renderDSDContent()
Render only the Declarative Shadow DOM template content for a registered component.
ts
interface SSRStoreOptions {
store?: AtomStore;
storeSnapshotSchema?: AtomStoreSnapshot<Record<string, PrimitiveAtom<unknown>>>;
}
declare function renderDSDContent(
target: string | ComponentMetadata,
attrs?: Record<string, unknown>,
options?: SSRStoreOptions,
): string;Returns:A <template shadowrootmode="open">...</template> HTML string.