Marker helpers
Create hydration marker strings and store snapshot script tags for SSR output.
ts
declare enum MarkerType {
Text = "t",
Insert = "i",
Block = "b",
}
declare function createMarker(type: MarkerType, id: number | string): string;
declare function createStoreScript(serializedSnapshot: string): string;